Hello,
I am using this CSS code control accordian text size for mobile screens:
@media screen and (max-width:769px) {
.yourCustomClass {
font-size: 12px !important;
}
}
and I am using this to control the desktop size:
@media screen and (min-width:1200px) {
.accord {
font-size: 20px !important;
}
}
But I am lost how to control the values in between - could you please let me know what code should l use to adjust it for all break points - I am using standard break points.
Best regards,
Bart