- This topic has 1 reply, 2 voices, and was last updated 1 year ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Forums › SEA WordPress Theme › How to change font size of “Privacy Policy message below comment form”?
Hi, does anyone know how to change the font size of the “Privacy Policy message below comment form”? I want to change it to 14px (Desktop), 14px (Tablet) and 12 px (Mobile). So far it seems like it’s not editable. Thank you a lot!
Hi there,
Welcome to SeaTheme forum.
It is possible by custom CSS(“Appearance > Customize: Additional CSS”):
label[for="wp-comment-cookies-consent"] {
font-size: 14px;
}
@media (min-width: 768px) and (max-width: 991.98px){
.responsive-ux label[for="wp-comment-cookies-consent"] {
font-size: 14px;
}
}
@media (max-width: 767px){
.responsive-ux label[for="wp-comment-cookies-consent"] {
font-size: 12px;
}
}
Regards!
SeaTheme – FAQs – WordPress Customization – Facebook
Subscribe to our newsletter to receive news & updates. We promise to not spam you, super promise!