Hi All,
Does anyone know how to remove the shopping bag symbol from the header within the Taste theme please?
Also is there an option to change the footer wording that references Powered by…
Thanks
Steve
Hi All,
Does anyone know how to remove the shopping bag symbol from the header within the Taste theme please?
Also is there an option to change the footer wording that references Powered by…
Thanks
Steve
Hi @SteveM64 , in order to remove cart icon, go to edit code > assets > base.css and add this:
.header__icon--cart{
display:none!important;
}
For your second question, go to edit code > sections > footer.liquid, find this element (it’s probably somewhere on 330 line of code - but please check):
<small>© {{ 'now' | date: "%Y" }}, {{ shop.name | link_to: routes.root_url }}</small>
<small>{{ powered_by_link }}</small>
And change it with:
<small>© {{ 'now' | date: "%Y" }}, {{ shop.name | link_to: routes.root_url }}</small>
<small>SOMETHING THAT YOU WANT</small>
Text ‘something that you want’, of course, change with your content. ![]()
Perfect, thank you very much
Hi Marina,
Your guidance worked perfectly, thank you very much.
If you don’t mind me asking, as you know I am using the Taste theme…I have a block which is an image accompanied by text but I don’t seem to be able to centre the content on this one block?
Also, I have an accent colour (Red) on my footer and would like to add an “Enquire Now” button. Is there a way in which I can add a button to the footer and have it white ie different to other buttons given that this one will sit on a red background?
Here is my site www.allroutestohealth.com
Thank you
Steve
Actually I have resolved the centred text now so would just like some help with the button please.
Thanks again
Hi @SteveM64 , go to edit code > sections > footer.liquid and this where you’d like to display button:
[YOUR BUTTON TEXT](https://www.allroutestohealth.com/)
Change href value with url that you want, same for ‘YOUR BUTTON TEXT’.