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;}
Bookmarks