Hello,
This is likely that you are using the “Customizer – General Options – Align Wide Max Width” slider.
This option makes use of the var(--responsive--alignwide-width)
CSS variable.
IE11 is not compatible with CSS var() variables and in order for the Twenty Twenty theme to be backwards compatible with this browser it uses a completely different stylesheet when it is detected.
Please try adding this CSS into “Customizer – Additional CSS” …
@media only screen and (min-width: 822px) and (max-width: 1440px) {
.widget-area,
.pagination,
.comments-pagination,
.post-navigation,
.site-footer,
.site-header,
.alignwide,
.wide-max-width,
.wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignwide blockquote,
hr.wp-block-separator:not(.is-style-dots).alignwide {
max-width: calc(100vw - 200px);
}
.entry-header .post-thumbnail,
.singular .post-thumbnail,
.alignfull [class*=inner-container] > .alignwide,
.alignwide [class*=inner-container] > .alignwide,
.entry-header .post-thumbnail,
.singular .post-thumbnail,
.alignfull [class*=inner-container] > .alignwide,
.alignwide [class*=inner-container] > .alignwide {
width: calc(100vw - 200px);
}
}
@media only screen and (min-width: 1441px) {
.widget-area,
.pagination,
.comments-pagination,
.post-navigation,
.site-footer,
.site-header,
.alignwide,
.wide-max-width,
.wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignwide blockquote,
hr.wp-block-separator:not(.is-style-dots).alignwide {
max-width: 1240px;
}
.entry-header .post-thumbnail,
.singular .post-thumbnail,
.alignfull [class*=inner-container] > .alignwide,
.alignwide [class*=inner-container] > .alignwide,
.entry-header .post-thumbnail,
.singular .post-thumbnail,
.alignfull [class*=inner-container] > .alignwide,
.alignwide [class*=inner-container] > .alignwide {
width: 1240px;
}
}
… and if it works we will update the Options for Twenty Twenty-One plugin.
Oliver