Jump5crazy
03-27-2004, 11:29 PM
Okay, I can't change the color of my text in my div layers. I've changed all of the text colors in the style sheet to white, but these still show up black!
|
View Full Version : Another question! Jump5crazy 03-27-2004, 11:29 PM Okay, I can't change the color of my text in my div layers. I've changed all of the text colors in the style sheet to white, but these still show up black! kittycat 03-28-2004, 12:03 AM Could you post the code you're using/the page it's on? Jump5crazy 03-28-2004, 12:07 AM I want this text to be white: http://j5fhq.cjb.net . And I use the style sheet for each text color: FFFFFF. kittycat 03-28-2004, 12:34 AM Your style sheet is supposed to go between the <head> and </head> tags. It also needs a bit of changing.... <style type="text/css"> A:link { text-decoration: underline; color:#FFFFFF; } A:visited { text-decoration: underline; color:#FFFFFF; } A:active { text-decoration: underline; color:#FFFFFF; } A:hover { text-decoration: underline; color:#FFFFFF; cursor: nw-resize; } h1 {font-family: Trebuchet MS; color: #FFFFFF; } p {font-family: Trebuchet MS; color: #FFFFFF; } body { background: #000000; color: #FFFFFF; font-size: large; scrollbar-face-color : #00CC33; scrollbar-highlight-color : #00CC33; scrollbar-3dlight-color : #00CC33; scrollbar-shadow-color : #00CC33; scrollbar-darkshadow-color : #00CC33; scrollbar-track-color : #00CC33; scrollbar-arrow-color : #00CC33; margin-top: 0; margin-bottom: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-bottom: 0; padding-left: 0; padding-right: 0; } </style> I removed anything that you didn't specify a value for and replaced a missing bracket. Jump5crazy 03-28-2004, 12:49 AM Oh, thanks! |