Jump to content
Search Community

help me for this problem how to make this mobile responsive or hide in medium breakpoint

feyberho test
Moderator Tag

Go to solution Solved by mvaneijgen,

Recommended Posts

  • Solution

If you moved your code to a codepen where you would demonstrate the issue people might be able to help you. But making your site responsive has nothing to do with animations (GSAP).

 

So you're asking this in the wrong forum, but if I take a quit look at your site I see at the "our team" grid you have CSS for a grid of always three images, but this will not fit on smaller screens

 

.grid-cols-3 { 
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

 

I would change this code to something like this

 

.grid-cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

This way the columns will fit them selfs and be at a minimum 250px. Here is a video tutorial about responsive css grid

 

 

But I would recommend putting a bit more effort in posting a question, this way you'll get better answers

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...