Icon and Search Icons MISSING on Desktop - Debut Theme

Hi,

My Icon and Search Icons are missing on desktop and Ive been told that is has something to do with the theme code potentially.

Could you please help?

URL: vertalife.com

@VertaL1fe

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (min-width: 750px){
.icon-search { color: #404040 !important;}
}

Thanks!

Hi there,

That made the search bar come up, but not he cart Icon.

The cart notification is showing but nothing else.

@dmwwebartisan

your icons are already there but color code is #fff. so, it’s not visible.
please add this code in theme.css .
@media only screen and ( min-width: 750px ) {

.site-header__icon .icon-search {
color: #000;
}

.icon-cart {
color: #000;

}

}

This worked! Thanks so much!

@Denishamakwana @dmwwebartisan

Other question I have is… why is it when I click add to cart on both desktop and mobile the notification doesnt come up, but its only once I refresh the page or actual go into the cart that the blue notification pops up. I want to change it so that the notification appears in real time

please add this code in theme.css
.site-header__cart-count.hide.critical-hidden {
display: inline-block !important;

}