Center Right Aligned Images on Mobile
-
I’d like to center all right aligned images on mobile, since alignment doesn’t look great on the small screen. They should maintain right alignment on desktop.
I have the following custom css in my child theme. This worked previously, but it recently seems to have stopped working (maybe with the last release?).
@media only screen and (max-width: 800px) {
figure {
float:none !important;
display:block !important;
margin-left:auto !important;
margin-right:auto !important;
}
}Thanks.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Center Right Aligned Images on Mobile’ is closed to new replies.