Replies: 1 comment
-
As a hacky fix, I was able to just add wp_dequeue_style( ‘global-styles’ ); To remove the global inline styles which includes these body paddings, but it’s not really a solution |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For some reason either with WordPress 6.1 or the latest gutenberg rc version, our website has the below code inside global inline css…
body { padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; };
How can I remove this? It’s overwriting our theme’s CSS for body padding, since the global inline css comes after our theme’s CSS.
Beta Was this translation helpful? Give feedback.
All reactions