Hi,
i need to have another fontsize for the titles of the toggler.
This is what i tried but without success.
@media only screen and (max-width: 767px) {
h3.toggler-title {
font-size: 12px!important;
}}
Regards, simon
Hey simon,
@media only screen and (max-width: 767px) {
p.toggler {
font-size:20px;
}
}
Best regards,
Rikard
Hi Rikard,
i had to add !important then it works
@media only screen and (max-width: 767px) {
p.toggler {
font-size:13px !important;
}
}
Thanks