Omnimaga

General Discussion => Technology and Development => Web Programming and Design => Topic started by: Digital on February 21, 2015, 04:56:06 pm

Title: Html/Css Link styling
Post by: Digital on February 21, 2015, 04:56:06 pm
On my new homepage (in work) i have som links which i want to have a other style. i have to change thestyle for all links in <nav> <ul> <li>.i want they to become green if the mouse is over them.
thanks for all help;)
Title: Re: Html/Css Link styling
Post by: Sorunome on February 21, 2015, 04:59:46 pm
try this:
Code: [Select]
nav a:hover {
color:green;
}
Title: Re: Html/Css Link styling
Post by: Digital on February 21, 2015, 05:03:56 pm
and if i additional want that its normaly blue and yellow if activated?