jquery - Remove shadows between two navigation items -


i tried create navigation menu, have 1 problem with.

so html:

<div id="navigation">   <ul>     <li class="active"><a href="#">fd</a></li>     <li><a href="#">vc</a></li>     <li><a href="#">ew</a></li>     <li><a href="#">ds</a></li>     <li><a href="#">vcx</a></li>     <li class="active"><a href="#">re</a></li>   </ul> </div> 

the css file on codepen project, because big. problem 2 closest menu items, when 1 of active , 1 applied hover. how possible fix it? mean remove shadows between them.

http://cdpn.io/asjde

if want no box shadow in navigations remove css , eliminates shadows on nav.

box-shadow: inset -4px 0 7px -5px black, inset 4px 0 7px -5px black; 

Comments

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

tsql - Pivot with Temp Table (definition for column must include data type) -- SQL Server 2008 -