iheartfreedom
07-29-2005, 12:51 AM
My website uses DIV layers, and in the main content spot, I want to change the format of the links (ex: colors, style, etc.). But I can't figure out how... the main style sheet won't change the links in the DIV layer. Someone please help!
add this to the DIV tag in question...
class="myspecialdiv"
then in your css area, create the class...
.myspecialdiv {color and other styles here;}
if you need to make links change in that area, that can be done too now like this...
.myspecialdiv a:link {styles here;}
.myspecialdiv a:hover {styles here;}
does that help a bit in the right direction?
iheartfreedom
07-29-2005, 01:54 PM
Thanks sooo much, that helps a ton!