This topic has 9 replies, 3 voices, and was last updated 9 years, 3 months ago ago by Eva Kemp
I would like to move the main menu below the logo for header 9 left justified. I believe this is a simple CSS script??
Is there a way to remove the down arrow on the main header menu which represent subcategories?
Also, is there a way to make it when you first enter the website that the sidebar menu doesnt automatically open the first category?
Is there a way to remove the Plus and Minus signs on the sidebar menu?
Hello,
Try to use the following css code in WP Dashboard > Theme Options > Custom CSS > Global Custom CSS section:
.header.main-header .header-logo, .header.main-header .tbs {
display: block !important;
}
.header.main-header .tbs {
margin-top: 40px !important;
}
.menu > li.menu-item-has-children > a:after {
display: none !important;
}
.product-categories .open-this, .product-categories > li.opened > .open-this {
background-image: none !important;
}
As for the request:
Also, is there a way to make it when you first enter the website that the sidebar menu doesnt automatically open the first category?
you need to edit the wp-content/themes/woopress/js/etheme.js file in line 1715, comment the code:
if($this.find('.current-cat.parent-level0, .current-cat, .current-cat-parent').length > 0) {
$this.find('.current-cat.parent-level0, .current-cat-parent').find('.open-this').html(minusIcon).parent().addClass('opened').find('ul.children').show();
} else {
$this.find('>li').first().find('.open-this').html(minusIcon).parent().addClass('opened').find('ul.children').show();
}
Best regards,
Jack Richardson.
Great! That moved the menu down but how do you make it left justified under the logo? The idea is to move the menu down and to the left below the logo. Then place a static search bar where the menu was previously.
Hello,
Please provide us with WP dashboard, FTP (FTP host, FTP user, FTP password) credentials and site link in private content.
Best regards,
Jack Richardson.
Thank you for your help. See Private Content.
So the sidebar categories menu is fine with the “+” and “-” next to the topics. However, cant make it to when you first enter the website that the sidebar menu doesnt automatically open the first category?I see your notes but cant get it to work.
Hello,
I’ve edited the code in Custom CSS to align the menu and commented the code in the file wp-content/themes/woopress/js/etheme.js file in line 1715 to close the first category in product category sidebar.
Please check your site now.
Best regards,
Jack Richardson.
Perfect. Looks Great!!
Hello,
You’re welcome.
Regards,
Eva Kemp.
The issue related to '‘Moving Menu Right Below Logo for "Header 9" – WooPress’' has been successfully resolved, and the topic is now closed for further responses