Archived topic
more photo questions
1 reply · Started by Melissa on July 14, 2019
I've decided to just ignore the previous issue.
Now I am wondering if I can get a margin around a "wide"-aligned image when on a small screen?
Also how can I fix the text wrapping on a smaller image on a full screen?
Please look at page for examples.
https://theslowroad.org/what-shoveling-manure-can-teach-you-about-management/
Hi there,
You can try some CSS like this:
@media (max-width: 1000px) {
.wp-block-image .alignright {
float: none;
margin: auto;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
You can fine-tune the px number.