• Hi, please take a look at my page https://www.johde.net. There seems to be anextra border on the right side of my page – all the way from header to footer. This is not visible in all browsers but at least it is in IE6. I have tried almost everything in CSS but don’t just get it right. Anyone solved something like this already? Thanks!

Viewing 1 replies (of 1 total)
  • There may be an open selector within your stylesheet.

    #page {
            background-color: white;
            border: 0px
            text-align: left;
            }

    Simply close the “border” selector and see if that removes the border.

    #page {
            background-color: white;
            border: 0px;
            text-align: left;
            }

    Hope this helps!
    Derek M.

Viewing 1 replies (of 1 total)
  • The topic ‘Extra border in IE6’ is closed to new replies.