Solved

Remove underline from images that are links

FKrois
Excursionist
22 2 2

Hi,

 

I am attempting to remove the underline of images (that are links).

I tried this:

.rte a:not([class]):after{
height: 0px !important;
}

In the assets/theme.css

 

But it does not seem to do anything. Maybe there is a difference since I packed the image links into a table?

Here is the example link:

https://apple-guru.at/pages/apple-produkte

 

Any ideas?

 

All the best,

Fabio 

Accepted Solution (1)

Savior
Shopify Partner
537 108 161

This is an accepted solution.

@FKrois 

1. Go to your store Assets > theme.css or theme.css.liquid and paste the lines at the bottom of the file

 

.scrollable-wrapper table td a {
    border-bottom: none !important;
}

 


If helpful then please Like and Accept Solution. Want to modify or custom changes on store Hire me. Feel free to contact me on mail | Shopify Design Changes | Custom Modifications In to Shopify Theme

banned

View solution in original post

Replies 2 (2)

Savior
Shopify Partner
537 108 161

This is an accepted solution.

@FKrois 

1. Go to your store Assets > theme.css or theme.css.liquid and paste the lines at the bottom of the file

 

.scrollable-wrapper table td a {
    border-bottom: none !important;
}

 


If helpful then please Like and Accept Solution. Want to modify or custom changes on store Hire me. Feel free to contact me on mail | Shopify Design Changes | Custom Modifications In to Shopify Theme

banned
FKrois
Excursionist
22 2 2

You. Are. A. Rockstar.

 

Thx!!