[Support request] Gutenberg column bottom space removal

Home Forums Support [Support request] Gutenberg column bottom space removal

Home Forums Support Gutenberg column bottom space removal

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #760230
    Teuvo

    I think this is not a direct GeneratePress issue, more likely Gutenberg, so sorry for that ;).
    I want to implement a Gutenberg column with no margin or padding, completelety fill a column with an image.

    I’ve removed “everything with this:

    .wp-block-column , .wp-block-image {
    margin: 0;
    padding: 0;
    }

    Still there is a mysterious space beneath the image.
    I’ve inspected it with browsers devtools, but nothing in the box properties seem to generate it.

    Any idea how to remove the space?
    If you have time fo this, it is temporarily shown in my wpdemo site (submitted with the form, exa,ple the lowest one in the bottom)

    #760240
    David
    Staff
    Customer Support

    Hi there,

    try this:

    .wp-block-image img {
        vertical-align: middle;
    }
    #760259
    Teuvo

    Great ๐Ÿ™‚ Thanks a lot!

    #760261
    David
    Staff
    Customer Support

    You’re welcome ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.