I have successfully hidden the enfold cart doohickey while not logged in with the below css…
but if you happen to have an item in your cart via cookie and you are not logged in hit the my account page the cart icon shows up still…
but only on that link… no other pages…
.cart_dropdown.visible_cart {
display: none;
}
#top.logged-in .cart_dropdown.visible_cart {
right: -2px;
display: block;
}
Kriesi rules….
TY
Hey!
Try to use !important tags like
.cart_dropdown.visible_cart {
display: none !important;
}
#top.logged-in .cart_dropdown.visible_cart {
right: -2px;
display: block !important;
}
Regards,
Peter
That did it…