links override CSS?
why when make text link changes color regardless of style is? on applesenglish.com in header both enroll , home styled same because enroll link appears purple? in page properties there no color selected links....thanks
tim
tim
hello,
the style link has no underline:
a:link {
text-decoration: none;
}
if don't assign color browser use it's default link color
such blue link purple when it's been visited.
here's 1 way give link in headerbox class same color
normal text.
.headerboxes {
font-family: "lucida grande", helvetica;
font-size: 12px;
color: #ffff00;
text-align: center;
vertical-align: bottom;
}
.headerboxes {
color: #ffff00;
}
to change color on hover, add
.headerboxes a:hover {
color: #ffffff;
}
and on.....
take care,
tim
"whatisgood" <webforumsuser@macromedia.com> wrote in message
news:gienv1$fu5$1@forums.macromedia.com...
> why when make text link changes color regardless of
>
> style is? on applesenglish.com in header both enroll , home
>
> styled same because enroll link appears purple? in
>
> page properties there no color selected links....thanks
>
> tim
>
>
>
the style link has no underline:
a:link {
text-decoration: none;
}
if don't assign color browser use it's default link color
such blue link purple when it's been visited.
here's 1 way give link in headerbox class same color
normal text.
.headerboxes {
font-family: "lucida grande", helvetica;
font-size: 12px;
color: #ffff00;
text-align: center;
vertical-align: bottom;
}
.headerboxes {
color: #ffff00;
}
to change color on hover, add
.headerboxes a:hover {
color: #ffffff;
}
and on.....
take care,
tim
"whatisgood" <webforumsuser@macromedia.com> wrote in message
news:gienv1$fu5$1@forums.macromedia.com...
> why when make text link changes color regardless of
>
> style is? on applesenglish.com in header both enroll , home
>
> styled same because enroll link appears purple? in
>
> page properties there no color selected links....thanks
>
> tim
>
>
>
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment