How to remove bullet points from menu dropdown?! (Taiga theme)

Solved

How to remove bullet points from menu dropdown?! (Taiga theme)

will70
Excursionist
24 0 3

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!!

Accepted Solution (1)
zack_dev
Shopify Partner
92 15 15

This is an accepted solution.

<style>
.drawer-subsubmenu__item:before {
   display:none;
}
</style>

try with this 😃



- Helpful? Like or Accept solution, - Buy me Coffee


-

Contact me

View solution in original post

Replies 9 (9)

zack_dev
Shopify Partner
92 15 15
<style>
.submenu {
  
    list-style-type: none;
  
}

</style>

you can try to place this code on theme.liquid at end  see if it helps.



- Helpful? Like or Accept solution, - Buy me Coffee


-

Contact me

will70
Excursionist
24 0 3

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 : (

zack_dev
Shopify Partner
92 15 15

I will need to check your website is there any url?



- Helpful? Like or Accept solution, - Buy me Coffee


-

Contact me

will70
Excursionist
24 0 3

My website is moonryver.com

An example of a Taiga website without menu bullet points is almadalabel.com

zack_dev
Shopify Partner
92 15 15

 

<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 .



- Helpful? Like or Accept solution, - Buy me Coffee


-

Contact me

will70
Excursionist
24 0 3

sorry, moonryver.com I mean

 

thanks for the help!

zack_dev
Shopify Partner
92 15 15

This is an accepted solution.

<style>
.drawer-subsubmenu__item:before {
   display:none;
}
</style>

try with this 😃



- Helpful? Like or Accept solution, - Buy me Coffee


-

Contact me

will70
Excursionist
24 0 3

Oh wow, that worked - really appreciate it!

will70
Excursionist
24 0 3

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