Remove hyperlink formatting on a Multicolumn Section with CSS

Topic summary

A user working with the Abode Shopify theme wanted to remove underline formatting from hyperlinked text (specifically a title “Katrina Hughes” and description “Chiropractor - mv mntlab”) in a Multicolumn section while keeping the “Book an Appointment” link functional.

Problem: Previous attempts using text-decoration: none in custom CSS weren’t working.

Solution provided:

.multiimages-card__link {
  text-decoration-line: none;
}

Outcome: The CSS code successfully removed the underline formatting while maintaining link functionality. Issue resolved.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

I’m working with the Abode theme, and I want to remove the hyperlink formatting on the Title and Description of this Multicolumn section, where I have a link to book an appointment

So above is the example, the ‘Katrina Hughes’ & ‘Chiropractor - mvmntlab’ remove the underline, but still have teh link active on the ‘Book an Appointment’.

The website is https://www.enerqitumbarumba.com/pages/about-us

I have tried custom css with trying to target this and doing { text-decoration: none } but it’s not working.

Any help would be appreciated!

Hi @JesLeaCreative

Try this code out

.multiimages-card__link {
  text-decoration-line: none;
}

Ok this worked! Thank you so much :blush:

It’s my pleasure to help