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).
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
I've installed Hemma 1.4.4
Instagram plugin mobile view - is there a way to put the header before the pictures?
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.
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
Thank you so much! It worked :D
Cool!