HOW TO DELETE ICON AND BAR ON MOBILE
-
Hello
-In photo 1 I would like to be able to eliminate the yellow icon.
-In photo 2, I would like to remove the entire bar so that it is not displayed on the phone.
-In image 3 SHOPPING PAGE TITLE OPTIONS are shown where only the Categories are activated in the page title, this for all devices. We want it not to appear on the phone.
PLEASE HELP
Attachments:
You must be
logged in to view attached files.
Hello,
I saw the screenshots you attached.
To remove the back button from the shop page categories you need to add the following Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.
.page-title.with-back-btn .woodmart-back-btn {
display: none;
}
There is no option in theme settings to display the categories on desktop and hide for mobile. So you need to add the following Custom CSS in the Custom CSS for Mobile area under Theme Settings >> Custom CSS.
.nav-shop .woodmart-show-categories {
display: none;
}
Best Regards.