Skip to main content

I have added 3 links in my header (3 sections). It has changed the text colour to blue and underlined each word that has a hyperlink. How do I remove both these features? Thanks in advance.

Add this CSS code to your website's stylesheet or in a <style> tag in the <head> section of your HTML document. This will remove the underline from all hyperlinks on your website. If you only want to remove the underline from specific hyperlinks, you can target them using a class or ID selector. the code below

 

a {
    text-decoration: none;
}
 


Hi there, not my website my klaviyo email template header section


Hey there!

In the style section of your template editor you should be able to see the links setting, which you can format any way you like, including removing the underline.

This should then remove the elements you didn’t like.

 

 


Reply