Downgrade from 4 to 2 in 1 row
hi how can i under 1200px that services section it so that there are 2 boxes in 1 row
https://codepen.io/zopdry/pen/xxjvobW
4 Replies
On line 102 of your CSS there's an
}
that doesn't belong to anything so all the code below it is considered invalid and isn't being parsed. That's why the media queries aren't running.
But really, replace your .services-grid
with
And remove everything from line 102 down with:
And you should be good
Of course you can mess with the sizes for doubling the number of columns, but it should get you started!Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
I've been at it for a good long while. There are benefits of being old lol
I like using rem because it respects any settings the user puts into place, viewport units and pixels don't. It's not the norm, sadly, but it should be
it is worked so good thank you