html - Javascript navigation hover effect -


does know how implement navigation hover effect displayed on this web page html/css document? aforementioned page using wordpress theme, add green effect generic web page , able change color well.

p.s. have never used javascript before. (be nice.)

try this:

css

ul li{  list-style:none; } ul li a{ transition:all 0.2s ease-out; padding:5px; border-radius:5px }  ul li a:hover{   background-color:#&dcc0e; } 

html:

<ul> <li>    <a>hello</a> </li> </ul> 

Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -