Remove underline for hyperlinked items in content of Multi-Column section

Hello!

I need some help removing the underline for these linked items. I am using the multi-column tool to create this designer list and linking each designer to its corresponding collection page. This is how it shows up now when each item is linked to a collection page:

This is how i would like it to look:

Please advise!

Thank you!!

2 Likes

Hi @BGKelsey

Can I ask, how would the user knows its a link if you remove the underline? You will add some color on it? Would you mind to share your store URL?Thanks!

Yes, I didn’t clarify that, my apologies. I was hoping that when hovering over the name, it would then have an underline to indicate it was a link.

I am currently working on a new theme (Theme: Prestige) to eventually publish but it is not ready at the moment. The current site (made with Theme: Label) was made by someone else and is somewhat custom coded so I don’t know how to replicate what they currently have set up. This is how it currently looks on our live site as of now.

https://bygeorgeaustin.com/pages/designers

Let me know if I can provide more information!! Thanks!!

Sorry, but I need the current theme that your editing. You can also share the preivew or send a pm. If you dont like in public. Thanks!

Didn’t realize I could share it! Here ya go:

https://o6x417xshankhwgq-35823485063.shopifypreview.com

The designer page (in the menu bar) is the one I am trying to fix.

This is Noah from PageFly - Shopify Page Builder App

Hi @BGKelsey You can add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag


Hope my solution will help you resolve the issue.

Best regards,

Noah | PageFly

Thanks for the info, check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.prose.text-start a:hover:not(.h1,.h2,.h3,.h4,.h5,.h6,.button,.link-faded,.link-faded-reverse) {
    background: linear-gradient(to right, currentColor, currentColor) 0 min(100%, 1.35em) / 100% 1px no-repeat;
}
.link, .prose a:not(.h1,.h2,.h3,.h4,.h5,.h6,.button,.link-faded,.link-faded-reverse) {
    background: none;
}

And Save.

Result:

This worked great, thank you!! Do you happen to know how to create margins on that page as well? So that it does not span the entire width of the screen? More condensed in the middle? Thanks again for all your help!!