Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save djcowan/68ade9b2d8f88000a9edb5f0892262eb to your computer and use it in GitHub Desktop.
Save djcowan/68ade9b2d8f88000a9edb5f0892262eb to your computer and use it in GitHub Desktop.
/*
* @link <https://wordpress.org/support/topic/left-and-right-image-alignment-issues-with-fse-themes/>
* @author https://wordpress.org/support/users/jharries/
* @todo widewidth...
*/
@media only screen and (min-width : 768px) {
.is-layout-constrained figure.wp-block-image.alignleft {
margin-left: calc( ( 100% - var(--wp--style--global--content-size)) / 2 );
}
.is-layout-constrained figure.wp-block-image.alignright {
margin-right: calc( ( 100% - var(--wp--style--global--content-size)) / 2 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment