Problem changing text colors

liunx

Guest
Hey everyone, hows it going? Well I've been fine for the most part until I ran into a roadblock while developing my site. I'm new to CSS, and I've just started working on a site using CSS. My roadblock is concerning with changing your text colors for the text inside a <DIV> tag. I tried changing them with my style sheet page but when I go to save it it still remains the original colors that I set them at. My subtitles are the right color, it's just the main text that I want to change from white to black. So yeah, I need some solution here. Thanks, I appreciate your help.I (and others) would like to help you. You'd make it a lot easier for us to do that if you posted a link to your page. If for some reason you can't post a link you should supply the code you're using. There could be a hundred different reasons why you're having problems. Until we see your code, it's guessing games.CSSselector { color:#value } In this case, your selector may be:

div { color: value }Thats weird, I didn't do nothing to the coding and when I went back to it it finally switched over to black as I wanted it to. Maybe theres some delay to updating? I don't know. I have one more question though, the <H2> text on my site appears bold and I just want it to be normal arial text. Heres the current coding I'm using.


<STYLE TYPE="text/css">
<!--
BODY {background-color: #000000}
A:link {color: #999999; font-variant: small-caps; font-weight: extra-bold}
A:visited {color: #999999; font-variant: small-caps; font-weight: extra-bold}
H2 {font-size: 10pt; font-family: arial; text-align: center; font-variant: normal; color: Black}
H3 {font-size: 12pt; font-family: times new roman; text-align: left; font-variant: small-caps; font-weight: bold; color: Silver}
-->

</STYLE>More likely your browser was loading a cached page.Does your h2 have an 'a' tag in it?
 
Back
Top