Viewing 3 replies - 1 through 3 (of 3 total)
  • Hy @drculleton

    Seems like the image display for mobile devices is set to display: none

    You can apply this CSS:

    @media (max-width: 600px)
    .about-section .about-section-image {
        display: block;
    }

    To apply this CSS follow this link :
    https://docs.themegrill.com/knowledgebase/where-do-i-add-my-custom-css/

    Do let us know if it works.

    Best Regards,
    ThemeGrill.

    Thread Starter drculleton

    (@drculleton)

    Hi!

    That kind of worked. The picture shows up small and to the side. Almost like the whole block is being displayed smaller without the Text/Button column.

    I looked into it maybe being JetPack so I turned off all the photo optimization settings, but it didn’t help.

    I tried pulling the About Section into it’s own page builder section – didn’t help either.

    I looked for how to turn on image display for mobile but nothing is jumping out to me.

    Any other advice you have is welcome, thank you!

    Hy @drculleton

    For that, you can replace the above CSS with this

    @media (max-width: 600px)
    .about-section .about-section-image {
        display: block;
        width: fit-content;
    }

    Do let us know for further queries.

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘FT:About Not Collapsing on Mobile’ is closed to new replies.