Quote Originally Posted by maxnut View Post
I would like to remove the "Information" drop down menu from Sheffield 2.0. I was able to hide the "brands" and "customer service" links but not the "Information" drop down.

Any help would be greatly appreciated.
Thanks
I answered my own question. I tried using ul.slimmenu li.information-li{display:none;} in stylesheet.css and it didn't work. Then I saw in tpl_modules_mobile_categories_tabs.php that it is li.info instead. So the code below in stylesheet.css will keep the about us, and remove customer service, brands, and information menu drop downs


ul.slimmenu li.aboutus-li ul li{width:600px;}
ul.slimmenu li.customer-service-li{display:none;}
ul.slimmenu li.brands-li{display:none;}
ul.slimmenu.collapsed li.customer-service-li{display:none;}
ul.slimmenu.collapsed li.brands-li{display:none;}
ul.slimmenu li.info-li{display:none;}