Site logo

Archived topic

Problem with button alignment

17 replies · Started by paddyd on March 28, 2021

Viewing posts 16–18 of 18

That CSS is for post loops.

Are you trying to make the images with extra-margin-bottom go full width on mobile?

If so, try this CSS:

@media(max-width:768px){
    .wp-block-image.extra-margin-bottom figure{
        float: none;
        width: 100%;
    }
    .wp-block-image.extra-margin-bottom figure img{
        width: 100%;
        height: auto;
    }
}

Note: This won't go full-width of the viewport. It will only go full-width of its container like this: https://share.getcloudapp.com/ApuYN4xo

PERFECT! Exactly what I was looking for, Elvin. Thanks!!

No problem. Glad to be of any help. :D

This archived topic is closed to new replies.