I cannot change the color of my text

henrikjt

New Member
Hey Everybody,

I can't figure out how to darken the text on this page. The page is from a dreamweaver template that i created and i can only change the content in the middle.
I think i have some conflicting css rules or something like that.

Can anyone help me change the color of the text in the white box?

Thanks

http://www.15jewellplace.com/description.html
 

adamblan

New Member
Maybe try simplifying this to

#content p {
color: #999;
}

or

.rbcontent p {
color: #999;
}

--> Either or, but not both...
 
Last edited:

horrorshow75

New Member
I believe these two are conflicting, firebug in FF shows the color attribute for .rbcontent as being canceled out. My guess is that IE is using #1F1F1F and FF is using #999999

Code:
#container #content .rbroundbox .rbcontent p {
color:#999999;
}

.rbcontent {
color:#1F1F1F;
}
 
Last edited:

horrorshow75

New Member
Maybe i misunderstood what you were trying to accomplish because the text was always dark in IE and light in Firefox and it still looks that way to me.

Never mind both are dark now. :)
 
Last edited:
Top