How to remove underline on links in my announcement bar

Hi, I am using the theme Impulse and I am trying to remove the underline link shown on my announcement bar? The CSS {Text-Decoration:none;} does not seem to be working. Can anyone assist me?

SITE LINK:https://fitflop-9236.myshopify.com/

Hello @Nats_PR_Design ,

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before


I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

Hi @Nats_PR_Design

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the css file:

.announcement-link .announcement-link-text {text-decoration: none !important;}

Regards,

San

Hello @Nats_PR_Design

To remove underline from announcebar content follow this steps :

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.announcement-link .announcement-link-text {
   text-decoration: none important;
}

Hope this works well.

@Nats_PR_Design
add below css into your css file

.announcement-link .announcement-link-text {
    text-decoration: none !important;
}