Navigation Layout without WooCommerce
-
Hello,
I disabled the woocommerce plugins and also any other e-commerce related plugins because the customer did not need these features. I was informed by the theme developer that Basel should still be able to work properly and woocommerce is not required for the theme to properly function. I chose the “Simplified Navigation” (4th option- logo in the middle and nav items to the left and right of the logo), but it appears to render incorrectly without woocommerce activated.
In addition, is there a way to hide the search function within the nav from the theme settings?
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.basel-header-overlap .header-split .wrapp-header {
position: relative;
}
.header-split .left-side {
position: absolute;
left:0;
}
Regards
The code for the search function does not hide the search.
The rest of the CSS code does properly function
If you want to hide the search completely you can disable it from Theme Settings -> Header -> Other.
Are you referring to “Show Dummy Content link in admin menu” to “Off” ?
Thank you for the clarification, that worked well for the desktop navigation. In mobile screen sizes, the mobile menu still shows the search function. Does this not hide the mobile menu search function?
Hello,
You can hide it with the following code
.mobile-nav .searchform {
display: none;
}
Regards