Home › Forums › WoodMart support forum › Text Color Issue: White Background Makes Text Invisible › Reply To: Text Color Issue: White Background Makes Text Invisible
October 24, 2023 at 3:30 pm
#506724
Aizaz Imtiaz Awan
Keymaster
Hello,
1. Please use the below custom CSS code:
.wd-product-nav-btn {
color: rgb(90,95,222);
}
div.quantity input[type="button"] {
background: rgb(90,95,222);
}
input[type='email'], input[type='date'], input[type='search'], input[type='number'], input[type='text'], input[type='tel'], input[type='url'], input[type='password'], textarea, select {
border: var(--wd-form-brd-width) solid rgb(90,95,222);
background-color: rgb(90,95,222);
}
.wd-action-btn>a:hover {
color: rgb(90,95,222);
}
.wd-action-btn>a {
color: rgb(90,95,222);
}
.wd-social-icons.icons-design-default.icons-size-small.color-scheme-light.social-share.social-form-circle.product-share.wd-layout-inline.text-left a {
color: rgb(90,95,222) !important;
}
Best Regards.