Hi,
In RTL website, when displayed in mobile,
most right column should appear first (on top of page).
and it ain’t so…
How can I fix it?
Hey yudkoren,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Please
Hi yudkoren,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.post-entry.post-entry-type-page .entry-content-wrapper {
display: flex;
flex-direction: column-reverse;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Nor working
:-(
Hi yudkoren,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .entry-content-wrapper {
display: flex !important;
flex-direction: column;
}}
Best regards,
Vinay