Divi Menu Cart change img color

Add this code to Dashboard > Divi > General > Custom CSS The will change the color of you image when scroll on your custom header
 avatar
unknown
css
2 years ago
445 B
6
Indexable


/* This part will invert the color of the icon image when your header sticks */
.menu-cart-info img{
    transition: all .3s ease; 
}
.has_et_pb_sticky .menu-cart-info img{
    filter: invert(1);
   
}

/* Optionally this part will swap the colors of the count number and circle */
.divi_menu_cart_count>small{
    transition: all .3s ease;
}
.has_et_pb_sticky .divi_menu_cart_count>small {
    color: #2a2e40;
    background-color: #f9f9f9;
}
Editor is loading...