How do I make text hyperlinks not be underlined, I'm using the colorblock theme and not finding

where to do this. Any help appreciated.

hi @tejai1

This is PageFly - Free Landing Page Builder.

You can use the code below to achieve this

Step1: Online store > Themes > Edit code > search for your theme file .css that could be theme.css

Step2: Paste the code to the end of the file

a {
text-decoration: none !important;
}

This will remove the underline for every hyperlinks

Hope this helps.

Best regards,

PageFly

Hi there - if the theme is not offering the option, you can achieve it through custom CSS. You should consider hiring a developer.

If further assistance is considered, please share your website link.

Regards,

Gabriel

Hello @tejai1

You can go to Edit theme, open the file base.css and add some code at the bottom

a {
text-decoration: none !important;
}

Hope it helps!

thanks that worked…

thanks, that worked…