How do I remove a footer link redirecting to a website?

How do I remove a footer link redirecting to a website?

GustavoAlves
Excursionist
37 0 2

When I click on that part of the footer it's sending me to a shopify website, how do I get that off? I don't want people to click there and go to some website. If you have it as a theme editor or code, thank you.

 

 

GustavoAlves_0-1673900574060.png

 

Replies 8 (8)

Simonsron
Shopify Partner
699 87 122

Show your store url

banned
GustavoAlves
Excursionist
37 0 2
Simonsron
Shopify Partner
699 87 122

Simonsron_0-1673922523182.png

Do you need to keep this text? Or do you want to remove it all together?

If you need to keep the text, replace the a tag with a div

<div>CNPJ: 49.190.257/0001-42</div>

 

banned
GustavoAlves
Excursionist
37 0 2

But where in the css do I make this change? @Simonsron 

 

Simonsron
Shopify Partner
699 87 122

First determine if you need to keep this text?

If not, use css to hide this! The code is as follows.

.footer__aside-item--localization p a{display:none !important;}

put this code at the bottom of theme.css

 

banned
GustavoAlves
Excursionist
37 0 2

I need to keep the text, this information is very important to have there on the website. @Simonsron 

Simonsron
Shopify Partner
699 87 122

You could try searching for some key class names to locate the place

banned
Simonsron
Shopify Partner
699 87 122

Then you need to find this code, which should be in sections->footer.liquid

banned