Archived topic
modify size of images on mobile
3 replies · Started by liz on December 4, 2021
Hi
Currently, the images seem to occupy the whole space on mobile screen.I just want a bit more white space on both sides of the images[both left and right side of the screen] Thank you.The link to my website is on the private info field. BTW, is it possible for the magazine grid[dispatch theme] to remain visible on desktop but not on mobile? Thanks.
Hi there,
Is this for the single post featured images ? If so edit the Block Element - Page Hero for the Single Post - select the parent Container Block and add some Spacing > Margin
you can you remove the page hero magazine grid on mobile with this CSS:
@media(max-width: 768px) {
.home .page-hero {
display: none;
}
}
Hi,
Thank you.
You're welcome