css3 - CSS or probably a Jquery solution for Menu -


i have menu, responsive, problem has sub-level, please check example here

http://jsfiddle.net/6vp3u/409/

 .sf-menu ul {     position:static !important;     display: none !important;  }  .xpopdrop ul {     display: block !important;  } 

in above example, under "item 2" there sub-menu under "item 2.1", doesn't work according media query, want work other sub menus working, please drag fiddle center area see in action.. know has css "ul".. tried lot, couldn't find solution, appreciate if experienced css can spend 5 minutes , me fix this..

regards

i add 2 selectors:

.xpopdrop ul ul {     display: none!important;  } .xpopdrop .xpopdrop ul {     display: block!important;  } 

it seems worked...

fiddle


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -