
Originally Posted by
picaflor-azul
I would restore the tpl_modules_mobile_categories_tabs.php file to the original. If you want to hide the customer service drop down add this to your stylesheet.css file:
Code:
ul.slimmenu li.customer-service-li{display:none;}
If you want to change the information drop down then you have to edit the tpl_modules_mobile_categories_tabs.php file. If you remove an item be sure to remove the <li> and the matching </li>
Thanks,
Anne
Whoo hoo. I got it. Thank you.
For anyone following along from a search in the future that wants to remove items from the top menu here is the solution that a brain like mine can understand.
The path to the file we are talking about is
includes/templates/responsive_sheffield_blue/css/stylesheet.css
in my example below I am going to remove both the about us and the customer service items from the top menu.
in that file (stylesheet.css) go to around line 356 and you will find the following code.
Code:
ul.slimmenu li.aboutus-li ul li{width:600px;}
ul.slimmenu li.customer-service-li ul li{width:600px;}
replace that with
Code:
ul.slimmenu li.aboutus-li {display: none;}
ul.slimmenu li.customer-service-li {display: none;}
notice that not only the display: none attribute was changed but also the ul li was taken out.
Be sure to use
Code:
/*hidden note to yourself*/
To leave a description of your changes and some keywords that will help you find it in a search later
The path to the other file we were talking to change what is in the dropdown is
includes/templates/responsive_sheffield_blue/templates/tpl_modules_mobile_categories_tabs.php
Thanks Anne, I thought I was never going to get this tackled.
Bookmarks