Tagged: ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1047743

    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?

    #1047790

    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

    #1047972

    Please

    #1048630

    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

    #1048771

    Nor working
    :-(

    #1049171

    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

    #1049185

    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

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.