View Full Version : font color not showin


sjb
09-01-2003, 04:26 AM
ok im using an external stylesheet but the font isnt working properly for one person i know about

does anyone know whats wrong with my css tht the font color isnt working properly, it works with me but it doesnt work with my friend but she doesnt know what a web browser is so i dont know if her web browser supports it, does the font not work in some browsers? or is there something wrong with my css


<style type="text/css">

A:link
{ text-decoration: none; color:#33CCFF; }
A:visited
{ text-decoration: none; color:#cc66cc; }
A:active
{ text-decoration: none; color:#FFFF33; }
A:hover
{ text-decoration: none; color:#FF0000;

background-color: #000000;

cursor: value; default}

h1 {font-family: value; VAGRundschriftD
color: value; #990000}

p {font-family: value; arial, Verdana;
color: value; #FFFFFF}




body
{ background-color: #000000;
background-repeat: value; repeat
background-attachment: value; scroll

font-family: value; arial, Verdana;
color: #FFFFFF;
letter-spacing: value; 3pt
font-weight: value; normal
font-size: value; 12pt


scrollbar-face-color : #CC3333;
scrollbar-base-color : #CC3333;
scrollbar-highlight-color : #FFFFFF;
scrollbar-3dlight-color : #FFFFCC;
scrollbar-shadow-color : #000066;
scrollbar-darkshadow-color : #000000;
scrollbar-track-color : #CC0033;
scrollbar-arrow-color : #000033; }


td
{ font-family: value; Verdana
color: #FFFFFF; }

</style>

the problem is my background is black and she sees the text as black n has to highlight it, but i see it as white?
can i fix it with my stylesheet or do i have to fix the font page by page? (and does it matter that most my pages are in tables?)

jazzberry
09-01-2003, 04:39 AM
try this maybe, you dont' need "font-weight: value; normal" it just needs to be "font-weight: normal;" so don't use the value; thing :D hehe it confused me at first too


body
{ background-color: #000000;
background-repeat: repeat;
background-attachment: scroll;

font-family: value; arial, Verdana;
font-color: #FFFFFF;
letter-spacing: 3pt;
font-weight: normal;
font-size: 12pt;


scrollbar-face-color : #CC3333;
scrollbar-base-color : #CC3333;
scrollbar-highlight-color : #FFFFFF;
scrollbar-3dlight-color : #FFFFCC;
scrollbar-shadow-color : #000066;
scrollbar-darkshadow-color : #000000;
scrollbar-track-color : #CC0033;
scrollbar-arrow-color : #000033; }

sjb
09-01-2003, 04:54 AM
are you sure?
cause now i dont see my font...
and my friend doesnt see it either n the font looks different and really spaced out and all i see are my graphics...

Dude128
09-01-2003, 05:24 AM
jazzberry missed one- fix the value thing on the font-family attribute.

and the text is spaced out because you specified that in the CSS- you have the letter spacing set to 3pt. it does exactly what you tell it to do :P

sjb
09-01-2003, 03:48 PM
Ok, well now everything is doing what its supposed to but still i see no text, ive taken value out of everything whats wrong now?

<style type="text/css">

A:link
{ text-decoration: none; color:#33CCFF; }
A:visited
{ text-decoration: none; color:#cc66cc; }
A:active
{ text-decoration: none; color:#FFFF33; }
A:hover
{ text-decoration: none; color:#FF0000;

background-color: #000000;

cursor: default}

h1 {font-family: VAGRundschriftD
color: value; #990000}

p {font-family: arial, Verdana;
color: value; #FFFFFF}


body
{ background-color: #000000;
background-repeat: repeat;
background-attachment: scroll;

font-family: arial, Verdana;
font-color: #FFFFFF;
letter-spacing: 0pt;
font-weight: normal;
font-size: 12pt;


scrollbar-face-color : #CC3333;
scrollbar-base-color : #CC3333;
scrollbar-highlight-color : #FFFFFF;
scrollbar-3dlight-color : #FFFFCC;
scrollbar-shadow-color : #000066;
scrollbar-darkshadow-color : #000000;
scrollbar-track-color : #CC0033;
scrollbar-arrow-color : #000033; }


td
{ font-family: Verdana
color: #FFFFFF; }

</style>

Sheila
09-01-2003, 03:52 PM
You still had some values in your coding

<style type="text/css">

A:link
{ text-decoration: none; color:#33CCFF; }
A:visited
{ text-decoration: none; color:#cc66cc; }
A:active
{ text-decoration: none; color:#FFFF33; }
A:hover
{ text-decoration: none; color:#FF0000;

background-color: #000000;

cursor: default}

h1 {font-family: VAGRundschriftD
color: #990000;}

p {font-family: arial, Verdana;
color: #FFFFFF;}


body
{ background-color: #000000;
background-repeat: repeat;
background-attachment: scroll;

font-family: arial, Verdana;
font-color: #FFFFFF;
letter-spacing: 0pt;
font-weight: normal;
font-size: 12pt;


scrollbar-face-color : #CC3333;
scrollbar-base-color : #CC3333;
scrollbar-highlight-color : #FFFFFF;
scrollbar-3dlight-color : #FFFFCC;
scrollbar-shadow-color : #000066;
scrollbar-darkshadow-color : #000000;
scrollbar-track-color : #CC0033;
scrollbar-arrow-color : #000033; }


td
{ font-family: Verdana
color: #FFFFFF; }

</style>

sjb
09-01-2003, 04:25 PM
Yay it worked but i do see a lot of things i forgot to put <p> </p> around :S owell guess i'll have to add it all in but i still have to see if it works with other people but i guess it should

thx 4 everyones help

duckgirl
09-02-2003, 01:13 AM
You say it's working now, but to be safe, since it's an external stylesheet, take out they <style> tags!