Hi all!
Does anyone know what CSS I could use to:
- Remove the ‘write a review’
- Make all headings capitals
Thank you so much!
Kesha

Hi all!
Does anyone know what CSS I could use to:
Thank you so much!
Kesha

Best answer by MANSIR2094
Hey
Here's the CSS you need simple and effective:
/* Hide the 'Write a review' button */
button[data-hook="write-review-button"] {
display: none !important;
}
/* Make all headings uppercase */
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase !important;
}
Just pop this into your theme's custom CSS or whatever your platform allows for additional styles. Let me know if your setup is different and I will tweak it.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.