Sorry – I’ve read through the support and know this has been answered numerous times, so I cannot figure out why it is not working for me. I want to align mobile and desktop images differently, desktop right/left, all mobile center. I’ve created a child of my generate theme and added the following to me stylesheet. What am I missing?
@media(max-width: 768px) {
.wp-block-image figure.alignleft,
.wp-block-image figure.alignright {
float: none;
margin: 0;
}
.wp-block-image figure.alignleft img,
.wp-block-image figure.alignright img {
width: 20%;
}
}