Hello,
I’m back again this time I’m looking to reduce or decrease the size of the plus and minus sign. I wasn’t able to locate a height, font-size or any other element when inspecting the stylesheet. Any help is greatly appreciated.
url link is: https://foreverfive.com/products/unconditional
Hi @foreverfive
You can do that by adding this CSS code at the bottom of your base.css file
.btn-quantity.minus:before,
.btn-quantity.plus:before,
.btn-quantity.plus:after {
width: 8px !important;
left: 11px !important;
}
.quantity__group--1 .btn-quantity.minus:before,
.quantity__group--1 .btn-quantity.plus:before,
.quantity__group--1 .btn-quantity.plus:after {
top: 22px !important;
}
1 Like
that worked for me! Thank you!