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 think you need to use this site setting.
Determine which items appear in the homepage navigation, and in what order. Example latest|new|unread|categories|top|read|posted|bookmarks
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;
}