Archived topic
Left-Aligned Images In Mobile
3 replies · Started by Simon on September 2, 2020
Viewing posts 1–4 of 4
Hi,
Is there any way of centralising images on mobile site-wide when they're left-aligned on desktop?

Hi there,
try adding this CSS:
@media (max-width: 768px) {
.wp-block-image .alignleft,
.wp-block-image .alignright {
float: none;
margin: 0 auto 1em auto;
}
}
Worked like a charm, thank you!
You're welcome
This archived topic is closed to new replies.