HTML/CSS issue on handheld/mobile

Hi all,

Whilst browsing www.sherwoodsgroup.co.uk on a handheld, the page scrolls horizontally very slightly which screws up the header/footer background image.

Can anyone see why this is? I can’t seem to work it out!

Many thanks

Two things you can do:

Add this to your CSS:

header, nav, #hero, #content, footer {min-width: 1020px;}

and/or add this to the head of your document:

<meta name="viewport" content="width=1020px">

Either of those will probably do the job, and it might be worth having them both in there.

Excellent, many thanks Ralph.