Forum
Welcome, Guest
Please Login to access forum.
Re:Need to show all submenu items (1 viewing) 
Go to bottom
TOPIC: Re:Need to show all submenu items
#6756
Sebastian Ignat
Fresh Boarder
Posts: 4
User Offline
Need to show all submenu items Karma: 0  
Hi! How can I show all submenu items in responsivizer_menu_side position?

-HOME
-SERVICES
---SERVICE 1
---SERVICE 2

not

-HOME
-SERVICES

Thanks
 
Logged Logged  
  The administrator has disabled public write access.
#6757
John Dagelmore
Admin
Posts: 3722
User Offline
Re:Need to show all submenu items Karma: 79  
Hi,

you can't always show submenu items in a mobile menu, when the parent 'services' item is tapped the child elements are revealed.
Obviously you could try to override this default behavior using CSS.

Best regards
 
Logged Logged  
  The administrator has disabled public write access.
#6758
Sebastian Ignat
Fresh Boarder
Posts: 4
User Offline
Re:Need to show all submenu items Karma: 0  
Can you help me to override this default behavior using CSS? What CSS code should I use?
 
Logged Logged  
  The administrator has disabled public write access.
#6759
John Dagelmore
Admin
Posts: 3722
User Offline
Re:Need to show all submenu items Karma: 79  
in the file root/templates/responsivizer/css/main.css at the line 162 remove the
Code:

visibility:hidden;opacity:0;max-height:0;
from
Code:

ul.menu li ul{visibility:hidden;opacity:0;max-height:0;position:absolute;top:100%;z-index:0;width:160px;background-color:#f3f3f3;box-shadow:0 2px 3px rgba(0,0,0,0.3);padding:0}
to
Code:

ul.menu li ul{position:absolute;top:100%;z-index:0;width:160px;background-color:#f3f3f3;box-shadow:0 2px 3px rgba(0,0,0,0.3);padding:0}
That will allow submenu items to be always visible.
 
Logged Logged  
  The administrator has disabled public write access.
#6760
Sebastian Ignat
Fresh Boarder
Posts: 4
User Offline
Re:Need to show all submenu items Karma: 0  
Done! Thank you very much!
 
Logged Logged  
  The administrator has disabled public write access.
Go to top