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??
Your theme is forcing font sizes for labels, so you have to use the !important declaration.
font-size: 1rem !important;
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.