Dawn - Drop down menu nested title has bullet line which I need to remove or add

Dawn - Drop down menu nested title has bullet line which I need to remove or add

Frieqe
Tourist
5 0 2

Frieqe_0-1729178841889.png

How do I either remove the lines by each nested title or add a line to the first one?

Replies 2 (2)

Tech_Coding
Shopify Partner
514 132 131

Hello @Frieqe 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   ul#HeaderMenu-MenuList-3 li::after {
      content: unset !important;
   }
</style>

Tech_Coding_0-1729179613283.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

Made4uo-Ribe
Shopify Partner
10203 2423 3069

Hi @Frieqe 

To add:

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.header__submenu li:first-child {
    padding-left: 2rem;
}
.header__inline-menu details[open]>.header__submenu li:first-child:after {
    content: "";
    width: 1.2px;
    height: 18px;
    background: #005442;
    position: absolute;
    top: 10px;
    left: 0;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1729179859419.png

To remove:

Same instruction. 

 

.header__submenu li:first-child {
    padding-left: 2rem;
}
.header__inline-menu details[open]>.header__submenu li:after {
    content: unset;
}

 

And Save. 

Result:

Made4uoRibe_1-1729180006124.png

 

 

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.