Skip to main content
Solved

Remove Underline from Hyperlinks

  • February 28, 2024
  • 3 replies
  • 893 views

Forum|alt.badge.img

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.

Best answer by StefanUE

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.

 

 

View original
Did this topic or the replies in the thread help you find an answer to your question?

3 replies

Forum|alt.badge.img+1
  • Problem Solver I
  • 7 replies
  • February 28, 2024

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;
}
 


Forum|alt.badge.img
  • Author
  • Contributor I
  • 1 reply
  • February 29, 2024

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


StefanUE
Expert Problem Solver III
Forum|alt.badge.img+19
  • Champion & Partner
  • 78 replies
  • Answer
  • February 29, 2024

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.