Is there a way to remove, or condense, the list of available pages in my sidebar navigation? Its getting too long!
http://www.pulse8industries.com/education/vitamin-k2/
Thanks,
Susanne
Hey nicoleck83!
You can remove them by adding following code to Quick CSS in Enfold theme options under Styling tab
#top .widget_nav_menu .nested_nav { display: none; }
And if you would like to remove some of them, you can use following code as an example
#top .widget_nav_menu li .page-item-3024 { display: none; }
You can right click on menu item and and click Inspect Elements on Chrome or Firefox to find page item ID. You just need to change the page ID to desired items ID
Regards,
Yigit
That is awesome! Thanks SO much!