Shopify themes, liquid, logos, and UX
I'm using Taiga (3.2) Mint for my Shopify store, and for the life of me I cannot figure out how to remove the bullet points that show up in front of the different categories of the secondary drop down menu.
My under construction website it moonryver.com, and an example of a website without bullet points using the same theme is almadalabel.com.
I should be able to edit the code, if any one is able to say which part of the code to edit and exactly what to change. Any help will be greatly appreciated!!
Solved! Go to the solution
This is an accepted solution.
<style>
.drawer-subsubmenu__item:before {
display:none;
}
</style>
try with this 😃
<style>
.submenu {
list-style-type: none;
}
</style>
you can try to place this code on theme.liquid at end see if it helps.
Thank you for the idea, but I have pasted that into my theme.liquid file, and unfortunately that doesn't seem to work - bullet points are still there : (
I will need to check your website is there any url?
My website is moonryver.com
An example of a Taiga website without menu bullet points is almadalabel.com
<style>
.submenu {
list-style:none;
list-style-type: none;
}
</style>
i had checked this code for almadalabel.com . your website does not open you can try with above code but it will be better if i could check your website as html can be different .
This is an accepted solution.
<style>
.drawer-subsubmenu__item:before {
display:none;
}
</style>
try with this 😃
Oh wow, that worked - really appreciate it!
I just put
<style>
.submenu {
list-style:none;
list-style-type: none;
}
</style>
at the end of my theme.liquid file too, but also doesn't work
Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025