Hey there! So basically I have a section that shows 3 columns and on other website the section is displayed fully in just one mobile screen something like this:
Both of the solutions didn’t worked, I want this to be done at this link so please if you’re testing code then test it at this link now: https://saya.pk/collections/summer-sale-2023
@Moeed the problem is, that you have a fixed with on the whole section, which is larger than most mobile screens. You could add to the flex-container Wrap-Attribute
flex-wrap:wrap;
But this does not look excellent. Otherwise, you’ll have to dynamically change the font-size, spacing or the flex-direction (column) to get everything on a mobile screen without overflow.