Hey, I would like to decrease the letter spacing on the Price, ATC button and the sizes. Does anyone know, what the code is I need to use?
Thanks in advance
Hey, I would like to decrease the letter spacing on the Price, ATC button and the sizes. Does anyone know, what the code is I need to use?
Thanks in advance
Hello @drew23 ,
Please share:
If the store is not online yet, please follow this quick tutorial to learn how to safely and temporarily share an offline/unpublished theme URL.
Kind regards,
Diego
Hi, @drew23
You can try this code
for add to cart button
#product-form-template--16248727994603__main > div > button > span{
letter-spacing: 0;
font-size: 14px;
}
for price
#price-template--16248727994603__main > div > div > div.price__regular > span.price-item.price-item--regular{
letter-spacing: 0;
font-size: 15px;
}
@drew23 , do this to fix it in 20 seconds:
/* Button */
.product-form__submit{
letter-spacing: 0px !important;
}
/* Options */
.product-form__input label{
letter-spacing: 0px !important;
}
/* Price */
[id*='price'] .price{
letter-spacing: 0px !important;
}
You can change the 0px to any other value you wish.
If it helps you please click on the “like” button and mark this answer as a solution!
Thank you.
Kind regards,
Diego