@carlograbowski To change the colors of the cart, menu and search icon follow these instructions,
First to do the cart and search,
1) go to theme.scss.liquid
2) go to line 3442 you will see this
.site-header__cart .icon,
.site-header__search .icon {
font-size: em(25);
padding: $gutter-site / 4;
3) Make a new line next and add this , it will make them black (you can change color code to whatever you like)
color: #000000 ;
4) it should look like this after you added it
.site-header__cart .icon,
.site-header__search .icon {
font-size: em(25);
padding: $gutter-site / 4;
color: #000000 ;
@include media-query($medium-up) {
padding: $gutter-site / 2;
}
}
User | Count |
---|---|
564 | |
215 | |
129 | |
83 | |
45 |