Hi,
1.
When using 1/2, 1/3, 1/4, 1/5 etc. sections – displayed in responsive mobile – one below another.
But in my RTL Hebrew website the order is wrong: most right section should be first, and most left should be last – and it’s not so…
How can I fix it?
2. I can’t control H1 font size in responsive mobile.
I added CSS:
@media only screen and (max-width: 767px) {
h1 {
font-size:22px;
}
}
Thanks,
Yud
Hey yudkoren!
Thank you for using Enfold.
1.) Please refer to this link for a possible fix: https://kriesi.at/support/topic/rtl-sortedreverse-functions-problem/
2.) Give us a link to the actual page where you want to change the title.
Regards,
Ismael
Shalom!
Please add !important rule to your code as following
@media only screen and (max-width: 767px) {
h1 {
font-size: 22px!important;
}}
Regards,
Yigit
Great,
Thanks.