Un-underline all links?

I’m working with the Lorenza theme, this is my site:

Store: https://66cdcb-86.myshopify.com/

Password: chohme

I want to stop links from underlining, across the entire site. I don’t want any underline anywhere. Is there a blanket way for me to force that across the site or do I have to go through and edit sections individually?

2 Likes
  • Here is the solution for you @jasminsharp97
  • Please follow these steps:
  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before and press ‘Save’ to save it

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
1 Like

@jasminsharp97 ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


result:

Thank you so much! Is it possible to also left-align all link text?

1 Like

Hi @jasminsharp97

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.secondary_button-style-bordered .bttn--secondary, .secondary_button-style-bordered .bttnnewreview, .secondary_button-style-bordered #shopify-product-reviews .spr-summary-actions-newreview--secondary, .secondary_button-style-bordered #shopify-product-reviews .spr-summary-actions-newreviewnewreview, .secondary_button-style-bordered .product__reviews .spr-summary-actions-newreview--secondary, .secondary_button-style-bordered .product__reviews .spr-summary-actions-newreviewnewreview, .secondary_button-style-bordered #shopify-product-reviews .spr-summary-actions---secondary, .secondary_button-style-bordered #shopify-product-reviews .spr-summary-actions-newreview, .secondary_button-style-bordered .product__reviews .spr-summary-actions---secondary, .secondary_button-style-bordered .product__reviews .spr-summary-actions-newreview, .secondary_button-style-bordered #shopify-product-reviews .spr-button-primary--secondary, .secondary_button-style-bordered #shopify-product-reviews .spr-button-primarynewreview, .secondary_button-style-bordered .product__reviews .spr-button-primary--secondary, .secondary_button-style-bordered .product__reviews .spr-button-primarynewreview {
    text-decoration: none !important;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!


Can you try this code @jasminsharp97