How can I remove the underline from links in my online store?

You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css.
Step 3: Paste the below code according your requirement

span.header__active-menu-item {
    text-decoration: none;
}

a{text-decoration: none !important;}

a:link { text-decoration: none; }

a:visited { text-decoration: none; }

a:hover { text-decoration: none; }

a:active { text-decoration: none; }
1 Like