Skip to content Skip to sidebar Skip to footer

White Space On Right Side Of Header On Zoom

I am developing this website. The problem I am facing is white space on right side of header on zoom in. I did all sorts of things but failed to fill the white with area of header

Solution 1:

There are lot of issues , follow as suggested below:

1 .slideshow{margin: -10px 0 0 50px;} Remove this line from the class .slideshow

2 .headrouter{ padding-left:100px; width:1200px;} Remove padding-left and set width:1100px

3 #site_content {margin-left:50px; } remove margin-left

4 Add overflow-x:hidden to body like below:

body {
       background: none repeat scroll 00#FFFFFF;
       font: 80% Arial,Helvetica,sans-serif;
       overflow-x: hidden;
      }

That should resolve the issue.

Solution 2:

It is because on your http://www.brilliantseotechnologies.com/css/2nav.css you have width:98% for your ul.menu class

Post a Comment for "White Space On Right Side Of Header On Zoom"