This topic has 4 replies, 2 voices, and was last updated 4 years, 7 months ago ago by Rose Tyler
For example the ‘Sign in’, ‘Wishlist’ and ‘Cart’ icons are in black instead of white. The back to top icon is stretched (at the bottom)
Hello,
1) Theme Options > Header builder > My account / Cart / Wishlist > Style > Colors > select Custom and set White there.
2) Please change this custom CSS code
.back-top {
right: unset;
left: 15px;
}
to –
.back-top {
right: auto;
left: 15px;
}
Regards
Thanks Rose, but now on the mobile version, the shopping cart icon at the top right is not visible.
https://ibb.co/Cb1Dd7t
I need a way to change it to black but not impacting the white version on the sticky header:
https://ibb.co/rtT7Sb5
Add the next custom CSS code in Global custom CSS:
@media only screen and (max-width: 992px) {
.et_b_header-cart.et_element-top-level > a {
color: #222;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up