Help with responsive layout
-
This page: https://thebaseline.com/team/
Page is responsive but layout is wonky with mobile, I think because of custom CSS.
Can you tell me what code do I need to fix it?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Replace this rule in your custom CSS
.team .display-posts-listing .listing-item { width:33%; display:inline-grid }with this one, which uses a Media Query to keep your grid at 600px and wider, but allows things to return to a single column below that width.
@media screen and (min-width: 600px) { .team .display-posts-listing .listing-item { width:33%; display: inline-grid; } } -
-
- The topic ‘Help with responsive layout’ is closed to new replies.