> From: "Angelo Zanetti" <[EMAIL PROTECTED]>
>
> Hi guys sorry for the off topic post.
>
> i am not getting any success with Css @ the moment.
>
> What I need is basically a class in my CSS file that defines everything about
> A links.
>
> I have this class but it aint working (i know its wrong):
>
> ..sideMenu {
>
> hover {color:white};
> visited {color: black};
> visited:hover {color:white};
> a:text-decoration : none;
>
> }
>
> should this be:
>
> ..sideMenu{
>
> a-hover color:white;
>
> }
>
> ???
>
> please help me.
Yes, this is very off-topic. You should post to the css-d list --
<http://www.css-discuss.org/mailman/listinfo/css-d>. Meanwhile, try
something like this:
a { font-weight: bold; text-decoration: none }
a:link { color: #339; text-decoration: none }
a:visited { color: #036; text-decoration: none }
a:hover { color: #fff; text-decoration: none; background-color: #339 }
a:active { color: #fff; text-decoration: none }
--
Lowell Allen
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php