Home Forums Trusted Remove login and shopping cart icons from home page Reply To: Remove login and shopping cart icons from home page

#3511
Yazmin
Keymaster

To hide the login & cart from the homepage only, copy this into Customize > Additional CSS:

.home .top-login,
.home .top-cart {
    display: none;
}

If you want to hide login & cart on any other page, you would use the page ID like so:

.page-id-23 .top-login,
.page-id-23 .top-cart {
    display: none;
}