Hello
I have a subcategories section for Till Rolls, when the user clicks on the main ‘till rolls’ category and then hover their mouse towards the subcategories listing, they would instantly disappear.
Is there a way to fix this? Also, could the subcategories be aligned and featured in the center underneath the ‘till rolls’ category, so then the user doesn’t have to drag their mouse all the way on the left hand side to get there as it seems quite frustrating.
I am using the Debut theme and a live URL link is:
https://display-sign.co.uk/
You can add this to the bottom of your theme.css.liquid file in your assets folder. Unfortunately I still not have found a workaround for your mobile menu, but I hope this helps:
.site-nav--has-dropdown {
position: relative;
}
Thank you. If you could still look into and find a way/solution to have the subcategories scrollable on mobile view I would be very grateful.
Just realised that it isn’t featuring all the subcategory options on the navigation menu.
e.g. there is Oak Chalkboards subcategory for ‘By Colour Finish’ on the ‘Chalkboards’ menu.
Not sure what you’re seeing, I see it here:
This is what is showing up on my MacBook and it won’t let me scroll down to see the ‘Oak Chalkboards’ subcategory.
Ah I see, smaller screen. Your menus have unique identifiers, you can target that one with this and set it’s width to be 600px so that it doesnt break to a new line so soon:
#SiteNavLabel-chalkboards {
width: 600px!important;
}