Site logo

Archived topic

Looking for a solution to place buttons horizontally on mobile screens

1 reply · Started by Johanna on November 4, 2018

Viewing posts 1–2 of 2

I used Display:inline-block but it doesn't seem to be responsive across all screens
https://imgur.com/a/eLe61QW

Hi there,

That's the way to do it. However, the issue you're having is being caused by this CSS:

@media (max-width: 980px) {
    .button-one {
        max-width: 47%;
    }
}

If you remove the max-width, it should look better.

This archived topic is closed to new replies.