Hi all,
I was wondering if there is a possibility to show all categories in the webshop, instead of the last 4 categories which are placed under More Categories. Please see the file attached.
Can anyone help me?
Thanks in advance!
Regards,
Marcel
Hi @WDMWeb
I believe for user friendly design they have that, but can you share your website so we can see if we can manipulate the code?
Please add the code below at the bottom of your base.css file in Online store > Themes > Edit code > Assets.
.site-cat--has-dropdown.more_menu .site-cat-more {
display: none !important;
}
.site-cat--has-dropdown.more_menu .site-nav__dropdown {
display: block !important;
opacity: 1 !important;
position: unset !important;
border: unset!important;
}
.site-cat--has-dropdown.more_menu .site-nav__dropdown .site-nav__childlist-grid {
padding: 0;
}
Thanks a lot! That did the trick!