Want to fix icons size on header

Hi I want to fix the icons sizes on header of my website https://www.rockgooey.com/ exactly like this website https://www.dior.com/en_us/fashion Thanks!

Hi @Unknowndev234

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

svg.icon.icon-cart-empty {
    height: 2rem !important;
    width: 2rem !important;
}

Result

Best,

Liz

1 Like

Thanks for sending me the solution. But I want all icons size like the reffrence wbsite that I mentioned above thanks

Hi @Unknowndev234

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

svg.icon.icon-hamburger,
svg.icon.icon-search,
svg.icon.icon-account,
svg.icon.icon-cart-empty {
    height: 2.5rem !important;
    width: 2.5rem !important;
}

Result

1 Like

Thankyou Soo Much