views:

75

answers:

2

Hey Folks!

I've got a problem... I cannot localize the cause for the width-overflow...

Could anyone take a look at it? http://sulayman.org/

I've already been watching out for reasons - but didn't find anything.

Thank you all!

+3  A: 

div with a class="navigation clear" has a property

margin: 0 0 25px 0;

The 25px is causing this weird behaviour.

6bytes
That is the problem. You have your style.css included twice which can make it hard to debug.
Emily
Thanks - to both of you! <3
Kenan Sulayman
A: 

There is no width overflow with Firefox 3.6.

If you insist there is, insist back to your browser with a body {width: 100%; overflow: hidden;}

Tom