Divi mini cart customization
Divi mini cart customization position and sizeunknown
css
3 years ago
892 B
9
Indexable
/* ---- Move Position of the icon --- */
/* 1. ( Change the bottom property + to go up and - to go down for each screen size ) */
/* ---- Change size of the image icon --- */
/* 2. ( Change the width and height properties for each screen size ) */
/* -@- Desktop */
@media(min-width:981px){
.mini-cart-info {
bottom:3px;
}
.mini-cart-info img {
width: 21px;
height: 21px;
}
}
/* -@- Tablet */
@media(max-width:980px){
.mini-cart-info {
bottom:3px;
}
.mini-cart-info img {
width: 21px;
height: 21px;
}
}
/* -@- Mobile */
@media(max-width:479px){
.mini-cart-info {
bottom:3px;
}
.mini-cart-info img {
width: 21px;
height: 21px;
}
}
Editor is loading...