I want to increase font size for answer options in mobile view

closed

@media screen and (max-width: 800px)
{
.hdq_label_answer {
font-size: 1rem;
}
}
I added this code in my theme customize page but no changes appeared in site. I also try to edit plugin css files by editing same code but no changes appear. How to do that??

December 31, 2023 at 3:43pmShubham Singh

Your theme is forcing font sizes for labels, so you have to use the !important declaration.

font-size: 1rem !important;

31 December 2023 — 16:16support admin Dylan

This thread has either been marked as complete or has been automatically closed due to inactivity. Please consider opening a new support thread for help.