How to remove underlines in navigation menu in expanse theme

I want this to be bold and the underline to be removed. But i dont have the base.css file and my theme.liquid.css file doesn’t have any content. im using the expanse theme.

is there a code that will enable a feature for the texts to be categories rather than showing up as a link,

Hi @myname_simon

Could you share your store URL so I can check?

unitetris.com, thank you! and also i want to remove the cart icon

Hi @myname_simon ,

Can you share your store URL to check.

Hi @myname_simon ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css, custom.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

a.site-nav__dropdown-link.site-nav__dropdown-link--top-level {
    font-weight: 600 !important;
    text-decoration: none !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you

Hi @myname_simon ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Inside head tags. You need create style tags. After insert my code inside style tag

.megamenu__col-title a {
  text-decoration: none !important;
  font-weight: bold;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Please add this code to your theme.liquid file, after in Online Store > Themes > Edit code


Hi @myname_simon

This is Amelia at PageFly - Shopify Advanced Page Builder app.

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css or theme.css

Step 3: Add code

.megamenu__col-title a { 
  font-weight: bold; 
}
.megamenu__col-title:hover a { 
   text-decoration: none; 
}

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

how about removing the cart icon?

Hi @myname_simon , Similar to instructions above, Pls insert this code:

a#HeaderCartTrigger {
    display: none !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes: