How to remove underlines in navigation menu in expanse theme

Topic summary

Goal: Make Expanse theme navigation items bold without underlines, and also remove the cart icon. OP notes no base.css and an empty theme.liquid.css, shares store URL (unitetris.com).

Proposed solutions (CSS-based):

  • Add to an existing stylesheet (base.css, theme.css, styles.css, custom.css, or theme.scss.liquid): a.site-nav__dropdown-link.site-nav__dropdown-link–top-level { font-weight: 600 !important; text-decoration: none !important; }.
  • If no stylesheet is available, inject a block inside the of theme.liquid (theme’s main layout file) with: .megamenu__col-title a { text-decoration: none !important; font-weight: bold; }.
  • Variant from another helper: in base.css or theme.css use .megamenu__col-title a { font-weight: bold; } and .megamenu__col-title:hover a { text-decoration: none; }.

Remove cart icon:

  • Add CSS: a#HeaderCartTrigger { display: none !important; }.

Notes:

  • Several replies requested the store URL; OP provided it. Screenshots show the expected visual results of the CSS changes. One reply mentioned adding code after in theme.liquid but did not include the snippet.

Status: Solutions provided; OP has not confirmed success. Discussion remains open.

Summarized with AI on December 26. AI used: gpt-5.

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