I have a 100% grid with 4 columns. In some sizes I want it to be 3. I tried to change CSS so that the width would be 25% And a minimum of 33.33% in a certain range of screen size using CSS. In Grid I made CSS of
display: flex;
flex-direction: row;
flex-wrap: wrap;
But it is presented in such a way:
1 2 3
4
5 6 7
8
I want a certain screen size range, It will be responsive and will be this way:
100% = 1 2 3 4
5 6 7 8
in some screen size:
1 2 3
4 5 6
7 8
I work in Elementor and the two lines are separate If it changes anything Any help?