Hi there,
I would like to know if there is any possibility to add color background with about 50% transparency only for product description text box so that text could be more readable? Also, it would be great if this text box background has rounded corners.
Thank you in advance for your support.
My page: https://e221d9.myshopify.com/
Hi,
Thank you for your response, however I don’t have those options in my theme.
BR
@Pomakale Share your site password .
@Pomakale add below css into base.css file
.product__description.rte.quick-add-hidden {
color: rgb();
background-color: rgba(255, 99, 71, 0.2);
border: solid 1px;
border-radius: 20px;
}
Thank you so much, it works!
Only one more question: how can I set text margins? I mean how to create white space between background border and text?
Thank you!
@Pomakale add below css
.product__description.rte.quick-add-hidden {
background-color: #fcf0e680;
border: solid 1px;
border-radius: 10px;
padding: 20px;
}
Wonderful! Thank you very much!