Lee McDonald
Lee McDonald

Reputation: 155

Page width larger than any elements on the page?

Hey everyone, working on a site at the moment.

http://www.creativefireplaces.co.uk/fireplaces/marble-fire-surrounds/sheridan-marble-fire-surround.html

If you go to that page you will see that there is a horizontal scroll bar. I have tried to find the div responsible. (i'm aware the search bar pokes out) But looking in the code I cant work out what is making the pages so large.

Upvotes: 1

Views: 94

Answers (3)

stoneMonkey77
stoneMonkey77

Reputation: 175

Check your background image (the vertical stripes). It is too wide. Look at http://www.creativefireplaces.co.uk/skin/frontend/creative/default/images/main_bg.gif it overflows the browser horizontally.

Upvotes: 0

Ravikiran
Ravikiran

Reputation: 1458

<div class="product-custom-right-col" style="">

.product-custom-right-col { float: right; width: 420px; }

The absolute width of 420 px and float right is causing the issue.

Upvotes: 2

benhowdle89
benhowdle89

Reputation: 37504

add overflow-x: hidden; to div class middle-container :)

Upvotes: 1

Related Questions