I can’t work out where to change the css for the product review form on the product page. The css entered into base.css doesn’t seem to change the styles at all.
.spr-form-label+.spr-form-input {
margin: 0;
min-height: 30px!important;
}
.spr-form-input-text {
font-family:‘Lato’
}
I basically want those styles but not rendering when entering in base.css
Our url is https://cabinandcrate.co.uk/products/cabin-ii
Thanks in advance
If your CSS styles in the base.css file aren’t affecting the product review form on the product page, it’s possible that the specificity of your CSS selectors might be too low to override existing styles. To ensure your styles take precedence, consider using more specific selectors or inspecting the element using your browser’s developer tools to identify the exact class or ID associated with the review form. Additionally, make sure that your base.css file is being properly linked or imported into the HTML document. It’s also essential to check for any caching issues that might prevent your updated CSS from being applied.