Hi there, as mentioned above, is there a way I can adjust the space between the price and sku name? How can I get the CSS code?
Thanks for your time!
BS,
Eileen
Hi there, as mentioned above, is there a way I can adjust the space between the price and sku name? How can I get the CSS code?
Thanks for your time!
BS,
Eileen
You can add this CSS to your Page’s Custom CSS:
.product-list .pl-item .pl-price {
min-width: 110px !important;
margin-left: 50px;
}
You can play with both parameters, but I assume the last one is the one you wanted margin-left
, you can increase/decrees it as needed to achieve the desired effect.