Hi,
I’m trying to hide the icon bar on the homepage only. I have attempted this custom CSS: , but it’s not working. Any suggestions?
Hi,
I’m trying to hide the icon bar on the homepage only. I have attempted this custom CSS: , but it’s not working. Any suggestions?
The row of icons at the top, with text, is a section that appears only on the homepage. The row below is called the icon bar. It appears at the bottom of every page. On the homepage it is repetitive to the section above it, so I would like to hide it on the homepage.
Hi @Raymond_DuBois ,
Add the below css in style.css.
body.index div#shopify-section-footer__icon-bar {
display: none;
}
If you require further help to optimize or customize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
LuffyOnePiece
I added it here, but it didn’t work. Is this the wrong place to put the code?
I will be able to respond to your reply tomorrow. Thanks for the help!
Hi @Raymond_DuBois ,
Try adding below css.
body.index div#shopify-section-footer__icon-bar {
display: none !important;
}
Thank you
Sorry, it still did not work.