Hello Everyone !
My website working strange, when entering links, the page is moving weird and overflowing the page on mobile and desktop too.
I added a photo and video of the issue :
The website link is : www.pawzyy.co.il
Hello Everyone !
My website working strange, when entering links, the page is moving weird and overflowing the page on mobile and desktop too.
I added a photo and video of the issue :
The website link is : www.pawzyy.co.il
Thereโs maybe more specific solution ?
How can we find the code that I need to fix ?
I didnโt found him yet ![]()
I found the solution !
The problem was in base.css then .grid
flex-wrap: nowrap;
I changed the flex wrap to : flex-wrap: wrap;
and column-gap: 2px ; (it was 10px, I reduced it)
.grid {
display: flex;
flex-wrap: wrap;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: 2px ;
row-gap: var(โgrid-mobile-vertical-spacing);
}