Hi Anyone, our website https://amzdis.com (Amazon Discount) wants to hide the ‘Latest’, ‘Top’, ‘Categories’ in the home page. What CSS should be in Customize of Setting?
See Desktop screenshot
See Mobile screenshot
Hi Anyone, our website https://amzdis.com (Amazon Discount) wants to hide the ‘Latest’, ‘Top’, ‘Categories’ in the home page. What CSS should be in Customize of Setting?
See Desktop screenshot
See Mobile screenshot
I don’t know but guess CSS. Often the CSS for mobile and for desktop is different. Your desktop browser probably has a button to pretend to be a mobile device to find out the CSS class/id.
Desktop
.nav-pills>li a.active {
color: var(--secondary);
background-color: var(--quaternary);
display: none;
}
Mobile
.list-controls .nav-pills .navigation-toggle {
flex: 0 1 auto;
display: none;
}