Viewing 1 replies (of 1 total)
  • You will need to target a few HTML classes via the custom CSS input in the WP admin. See the example below:

    .wp-block-image {
        margin-bottom: CHANGE_HERE;
    }
    
    .entry-meta {
        font-size: 14px !important;
        margin-top: CHANGE_HERE;
    }
    
    .entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child) {
        margin-top: CHANGE_HERE;
    }
    1. wp-block-image is the image
    2. entry-meta is the author text
    3. the last part is the top margin of the post/page content

    Hopefully this gets you on the right path.

    Cheers

Viewing 1 replies (of 1 total)
  • The topic ‘gap between title, author name and image’ is closed to new replies.