Plugin Support
Yann
(@collet)
Hi Eddy,
The padding: 0 8%; you’re seeing in the Media & Text block is actually a WordPress core value. Twentig reuses that value because we dequeue the core Media & Text stylesheet and re-enqueue our own version to improve the breakpoint behavior — but the 0 8% padding itself comes from core.
So yes, if you’d like to remove it, the easiest way is to override it with custom CSS. To do so:
- In the WordPress dashboard, press Ctrl + K (Windows) or Cmd + K (Mac) to open the command palette.
- Type “Open Custom CSS”.
- Add the following CSS:
.wp-block-media-text > .wp-block-media-text__content {
padding: 0;
}
Have a nice day,
Yann