Okay
  Public Ticket #1761184
Instagram Plugin Mobile Header
Closed

Comments

  • Erika Chong started the conversation

    I've installed Hemma 1.4.4

    Instagram plugin mobile view - is there a way to put the header before the pictures?

  •  234
    Elena replied

    Hi Erika,

    That's a design pattern: content comes after image(s). But you could invert the order adding some custom CSS via the Customizer > Additional CSS (use flexbox order property).

    Cheers, P.

  •   Erika Chong replied privately
  •  234
    Elena replied

    Hi again Erika,

    I see your point but this is a customisation request and we are unable to provide support. Btw, as it's matter of changing a few lines of code, here is the CSS you should add to Customizer > Additional CSS

    @media screen and (max-width: 768px) {
        .block-instagram .columns.is-multiline {
            display: flex;
            flex-direction: column;
        }
        .block-instagram.block.block-strip .block-strip-title-column {
            order: -1;
        }
    }

    Hope that helped

  • Erika Chong replied

    Thank you so much! It worked :D

  •  234
    Elena replied

    Cool!