I created a site… I tried to make it RESPONSIVE. Problem: seen from mobile and scrolled down it still shows a huge empty space. They tell me to fix padding - margin… can anyone among you help me? I don’t want use div’s…
That doesn’t happen on my iphone SE as shown by the screenshot I posted.
I expect what is happening is that as your page is too wide for a mobile screen some mobiles will increase the horizontal and the vertical scrollbars in sync until the element is fully contained horizontally.
As a test try adding this css and retest.
html,body {
overflow-y: auto;
}
It may do nothing but is worth trying.
The correct answer though would be to remove the tables altogether and code the site responsively. At present with your structure the only other thing I could offer would be to add css to linearize everything on small screen so that its only one item across..
I don’t know if Paul agrees, but this seems to be a sticking plaster solution.
As an alternative to tables it might advisable to use css grids instead. This will give you better control over making your site responsive for desktop and mobile. Here are a couple of videos that are hopefully of interest.