View Full Version : I desperately need help with css


xM4rYk3x
12-30-2005, 02:13 PM
I am working on my site for like ages, but the css always discourages me, because I can't seem to make it work :S..

I have problems with the color of my links.. because they are the default blue even though I changed that color..

I hope one of you guys can help..please:dead:

here's the css :

<style type="text/css">

A:link
{ text-decoration: none; color:#663366; }
A:visited
{ text-decoration: none; color:#663366; }
A:active
{ text-decoration: none; color:#663366; }
A:hover
{ text-decoration: none; color:#000000;
cursor: crosshair;



p {font-family: Arial
color: 000000;}

body
{font-family: Arial;
color: #000000 ;
letter-spacing: 0pt;
font-weight: lighter;
font-size:xx-small
;}


scrollbar-face-color: #CBCBCB;
scrollbar-highlight-color: #CBCBCB;
scrollbar-3dlight-color: #E9FFF0;
scrollbar-darkshadow-color: #CBCBCB;
scrollbar-shadow-color: #E9FFF0;
scrollbar-arrow-color: #E9FFF0;
scrollbar-track-color: #CBCBCB;

</style>

Arwen
12-30-2005, 02:30 PM
body{
font-family: Arial;
color: #000000 ;
letter-spacing: 0pt;
font-weight: normal;
font-size:8px;
AdMchaa-face-color: #CBCBCB;
AdMchaa-highlight-color: #CBCBCB;
AdMchaa-3dlight-color: #E9FFF0;
AdMchaa-darkshadow-color: #CBCBCB;
AdMchaa-shadow-color: #E9FFF0;
AdMchaa-arrow-color: #E9FFF0;
AdMchaa-track-color: #CBCBCB;}

A:link
{ text-decoration: none; color:#663366; }
A:visited
{ text-decoration: none; color:#663366; }
A:active
{ text-decoration: none; color:#663366; }
A:hover
{ text-decoration: none; color:#000000;
cursor: crosshair;}

p {font-family: Arial
color: 000000;}

This should work.

xM4rYk3x
12-30-2005, 02:43 PM
yay thanks it works:blush:! I'm so happy :D

xM4rYk3x
12-30-2005, 03:01 PM
Hmmm I think that css doesn't like me that much lol because it's not working again.. my fault I guess, I changed the color again but now the regular text is black, while it has to be white.. what am I doing wrong :(?

<style type="text/css">

body{
font-family: Arial;
color: #FFFFFF ;
letter-spacing: 0pt;
font-weight: lighter;
font-size:x-small;}

AdMchaa-face-color: #EED949;
AdMchaa-highlight-color: #000000;
AdMchaa-3dlight-color: #000000;
AdMchaa-darkshadow-color: #000000;
AdMchaa-shadow-color: #000000;
AdMchaa-arrow-color: #000000;
AdMchaa-track-color: #000000;}

A:link
{ text-decoration: none; color:#FFFFFF; }
A:visited
{ text-decoration: none; color:#FFFFFF; }
A:active
{ text-decoration: none; color:#FFFFFF; }
A:hover
{ text-decoration: none; color:#EED949;
cursor: crosshair;}

p {font-family: Arial
color: FFFFFF;}


</style>

pb&j
12-30-2005, 03:07 PM
you had an extra ending } in there and missing a semicolon ;

body{
font-family: Arial;
color: #FFFFFF;
letter-spacing: 0pt;
font-weight: lighter;
font-size:x-small;
scrollbar-face-color: #CBCBCB;
scrollbar-highlight-color: #CBCBCB;
scrollbar-3dlight-color: #E9FFF0;
scrollbar-darkshadow-color: #CBCBCB;
scrollbar-shadow-color: #E9FFF0;
scrollbar-arrow-color: #E9FFF0;
scrollbar-track-color: #CBCBCB;}

A:link
{ text-decoration: none; color:#FFFFFF; }
A:visited
{ text-decoration: none; color:#FFFFFF; }
A:active
{ text-decoration: none; color:#FFFFFF; }
A:hover
{ text-decoration: none; color:#EED949;
cursor: crosshair;}

p {font-family: Arial;
color: FFFFFF;}

xM4rYk3x
12-30-2005, 03:13 PM
*sigh* I'm stupid :) thanks anyway

pb&j
12-30-2005, 03:16 PM
no worries.

msbubblegum
12-31-2005, 10:17 AM
i going through ```` trying to do mine tooo!

pb&j
12-31-2005, 05:31 PM
i going through ```` trying to do mine tooo!
well... you can start a new thread with a question on how to fix yours.