user1096057
user1096057

Reputation: 2423

Horizontal Scrollbar Removed from site

A have a horizontal scroll appearing on my site and I'm not sure why. Any ideas?

http://global-markets-recruitment.com/test/

Upvotes: 0

Views: 75

Answers (2)

markratledge
markratledge

Reputation: 17561

Maybe some code errors: [Invalid] Markup Validation of global-markets-recruitment.com test - W3C Markup Validator. Scroll down in the validation report to see line numbers and source code. And you have several div widths set to 1200px.

Upvotes: 2

mrtsherman
mrtsherman

Reputation: 39902

style.css line 57. You made your header 1200px wide. That's big.

#header {
    width: 1200px;
    height: 110px;
    margin: 0 auto;
    position: relative;
}

Actually you have other very wide elements too.

#contentHolder
{
    width: 1200px;
}

#contentShadow
{
    width: 1200px;
}

Upvotes: 0

Related Questions