Ok, I'm building a site, and am using CSS for the different styles. I'd like to know how to make links appear a certain way in only one style.
Example:
I have 2 main styles: .menu1 and .content1. The text is different colors in each, because of the color background they're on. The text in menu is #CCCCCC and content is #FFFFFF. I want the text in the style to stay the same color, and have an underline when it's a link. Like I said, I'm a noob to CSS. I'm partially using Dreamweaver, so if theres an easy way in there, that would help.
Thanks,
Asa
Edit: I got it to work. all I had to do was:
.menu1 {
font-family: verdana;
font-size: 12px;
text-transform: lowercase;
color: #CCCCCC;
}
.content A:hover
.content A:link
.content A:active {
.content {
font-family: verdana;
font-size: 11px;
text-transform: none;
color: #000000;
}
This post has been edited by asadarnell: 01 September 2007 - 06:24 AM

New Topic/Question
Reply


MultiQuote





|