Reputation: 35
There is a gap or blank space at the right side of my web page and I cannot manage to remove it. I don't know why it appears, I have look on all the elements of the page but nothing seems to be occupying that space.
You can go to the page so you can see what I mean, and also you can see all the source code: www.iot3k.com
Upvotes: 1
Views: 558
Reputation: 46
The following problem can be overcome by doing:-
body {
width: 100%;
overflow-x: hidden;
}
Doing this you will hide the excess content along the x-axis.
Hope this helps you.
Upvotes: 1
Reputation: 111
In general when ever you have similar problem you just have to click f12 and go to mobile view or what ever view then you just have to click on the mouse within border icon then you just have to hover mouse on your page and it will show you what is making the problem.
in your case : you have to resize the images .
Upvotes: 1