• STR
    Open new page with site-layout: Full-Width Layout
    Add media/text block with some content and set to full-width too.
    Duplicate media/text block
    Switch left/right alignment of media/text block
    Publish

    -> the whole text content has no suitable left/right padding (text begins outside visible area)

    @media (min-width: 544px) {
    .entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
        padding: 0 8% 0 0;
    	}
    }
    @media (min-width: 544px)
    .entry-content .wp-block-media-text .wp-block-media-text__content {
        padding: 0 0 0 8%;
    }

    padding should be padding: 0 8% 0 8%;

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Issue: padding in media-text block’ is closed to new replies.