As above. I am looking to remove the basket and the search icon for now on my Dawn Theme. I have managed to do it for my Spark Theme one but I haven’t found the code or a way of doing it on this website.
URL: https://lsaccountingfirm-umbrella.myshopify.com/
TIA.
Hi @LSAccounting
This is PageFly - Advanced Page Builder. I would love to give you some recommendations
Add this css at the bottom
Online Store ->Theme ->Edit code
Assets → base.css
.header__icons {
display: none !important;
}
Hope you find my answer helpful!
Regards,
PageFly
1 Like
Hello @LSAccounting ,
Please add this code below of base.css file.
.header__search {
display: none !important;
}
.header__icon–cart {
display: none !important;
}
1 Like
Hello @LSAccounting
Go to the online store ->theme >Edit code >Assets >base.css >Add code in this file.
.header__icons {
display: none !important;
}
1 Like
@LSAccounting Go to assets/base.css and paste below css at bottom of file.
.header__icons
{
display: none !imprtant;
}
1 Like