Search code examples
htmlcssoverflow

How can I remove a blank space on my website?


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


Solution

  • 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.