Latest Reply from Alice at 2016-03-01 08:41:39
Greetings..Just installed the theme from the profit theme and the menu bar in green is off..Also need to know how to make the items in the top menu on the website moved to options in the green menu header. My website is www.innovatehcconsulting.com.

Thanks!
Hi: I have corrected the menu issue for the header.
Now I need to know the following:
1. How to make the top header only show certain pages and not what is in the green memu bar
2. Make my parent page show the options under it. When I add Meaningful use to the menu, it should indent over under Services and it is not performing like this.

Please advise.
Hi!
All this settings are not provided by the theme. If you need to make these customizations you have to edit php, html and css files of the theme. We don't provide any services for editing themes for individual users.
I purchased the soundwave theme and on the mobile view of the site i get two menus how can i get rid of one? the second one doesn't have any options in it.
Hi!
Please, use the following instruction to fix the problem:
http://smthemes.com/support/topic/removecategorybar/#post-1217
How I can disable mobile view menu on iPad or tablet? will be showing a full size menu like on the computer.
You may disable the mobile mode using the following instruction:
https://smthemes.com/support/topic/howtodisablemobileandtabletmodes/

However, if you have a drop down menu, then it won't be working on tablets and mobiles. Since there is no ability to hover the menu item - you may only click it. In this case you will have to insert the script:
<script>
jQuery( document ).on( 'click', '#mainmenu a', function() {
if (jQuery(this).siblings('ul.sub-menu').length && jQuery(this).siblings('ul.sub-menu').css('display') == 'none' ) {
jQuery(this).siblings('ul.sub-menu').show();
} else if ( jQuery(this).siblings('ul.sub-menu').length && jQuery(this).siblings('ul.sub-menu').css('display') != 'none') {
jQuery(this).parent().find('ul.sub-menu').each( function() {
jQuery(this).hide();
});
}
})
</script>

before the closing </head> tag in the header.php file of the theme.

Leave a reply

Add codeAdd image