1
I have a list ul / li and want to set shadow to create a gradient effect when li have active and with Hover.
This is the code that creates the border, the idea is to insert more 5px as shadow to create the effect.
ul.navmenu-nav>li>a:hover,
ul.navmenu-nav>li.active>a,
ul.navmenu-nav>li>a:focus {
padding-left:15px;
border-left: 5px solid #2E2F44;
text-decoration: none;
background-color: #ffffff;
}
Hugo, it worked perfectly..
– RRV
@RRV too good then, with linear-gradient to do a lot of cool things after a read on this property. []’s
– hugocsl