• Resolved ucmartino

    (@ucmartino)


    Hello there, please how can I make the images to show before the text on mobile devices. It’s displaying well when viewing on a laptop/desktop but when viewed on a mobile phone the images seem to be overlapping themselves.

    PS: In every row, I want the images to be showing before the text when on a mobile device.

    Thanks,
    Martin

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • You can add a the same image before the text with a display:none. And then with media queries you can add a display:block to that image and a display:none to the original image. Hope that makes sense.

    Thread Starter ucmartino

    (@ucmartino)

    Hello @mdtrunzo , thanks for your reply…

    Please note that I am building the website using wpbakery. how can I do that with it.

    You need to add some CSS. You have to to “Appearance”, then “customize” and add the CSS on the CSS Editor at the bottom of the menu.

    Hi.
    Which images you want to fix position?
    Everything looks ok for me.

    Thread Starter ucmartino

    (@ucmartino)

    Ok, thanks @mdtrunzo

    Please, can you post the CSS code you said I should add…

    Thread Starter ucmartino

    (@ucmartino)

    Hello @ikaring ,

    Yes, it looks ok on a laptop/desktop but when view on a mobile device the image that is in the same row with the title “what is content marketing” goes down. I want that image to always show up first on a mobile device before the title.

    Do you have an idea on how to do that?

    I’m not familiar with WPBakery, but there might be css class to arrange column order.

    FYI, this thread is the same problem. Hope that helps.
    https://themenectar.ticksy.com/ticket/1517682/

    Thread Starter ucmartino

    (@ucmartino)

    Thanks @ikaring , what you sent helped me to find the solution.

    Here is it.

    1. Go to the row you want to swap the content on mobile view and include this class name “row_reverse”

    2. Go to customize and include the custom CSS Below

    @media (max-width: 767px){
    .row_reverse{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    }
    }

    Good:)

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘“Text” and “Images” not displaying well on mobile.’ is closed to new replies.