[ad_1]
That’s to be expected and is not a bug or related to a particular theme at all.
By default, the first column goes above when the two columns are stacked vertically… and the first column will go underneath when the two columns overlap…. unless specifically reversed with additional CSS.
Couple of ways to deal with this, but I guess the easiest way is to simply add a positive z-index to your second CSS, like:
.wp-block-media-text:not(.has-media-on-the-right) .wp-block-media-text__content {
margin-left: -100px;
z-index: 1;
}
That additional code worked. Thank you for the help.
