Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a div, #footer-outer that should stretch across the bottom of the page, creating a coffee colored strip. On iPad this is leaving a margin of about 40px on the right. I have a similar strip at the top of the page which works well.

Anyone any ideas? Thanks

share|improve this question

closed as too localized by Flexo, KatieK, Robert Harvey Jan 30 at 21:02

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

Well, I would suggest using the width:100%. As you said, the 40px could just be added on to the current width.

share|improve this answer
I tried that but removed the code as it didnt work. Added back in so no body suggests it again). – user1810211 Nov 14 '12 at 18:51
hmm ok. Sorry I can't help – InfiniDaZa Nov 14 '12 at 20:00

Try setting the viewport.

Related question: How to set viewport meta for iPhone that handles rotation properly?

Update
Actually this is happening in a regular browser (firefox on mac) too - try to resize the browser to 1/2 screen width and you will se it there too.

share|improve this answer

Can you link to the website? Is it just on ipad, what about PC or phone?

I would suggest that it is most likely a margin error, check that you don't have some css coming down effecting it?

Update: Here is the fix

Add the following to your #bottom CSS

background-image: url(/templates/beez5/images/world-coffee-map.png);
background-repeat: no-repeat;
background-position: center;

Remove the #world entirely - it was causing the problem, and besides it is a little bloating if I may say so without being rude. You may also want to make the map image slightly smaller to fit without the top being cut off, but I'm sure that should be easy.

Hope that works :)

share|improve this answer
The link is here - thecoffeelocator.com, it works cross browser, and on PC and MAC. It is just iPad - which is important for this site which will make sales via tablets – user1810211 Nov 14 '12 at 20:28
it seams as though your widths do not match up for the page and footer, I think you may need to check them, and include padding widths. Essentially I think it is all the widths do add up, but are a bit unstructured and the ipad is ignoring a padding somewhere. Sorry to be vague, I will have another look later. – tim.baker Nov 14 '12 at 20:57
Got it: it is happening basically because there is an element, which is bigger than the screen size it is working on, thus the 1/2 screen factor. Play around with those widths maybe? (don't forget 100% is not including padding so it maybe 100% +10px padding = too big for the screen) – tim.baker Nov 14 '12 at 21:04
Ok, so as I said above its widths/positions. It is the world map which is causing it, trying to work out a solution – tim.baker Nov 14 '12 at 21:59
Fixed, please see my solution above – tim.baker Nov 14 '12 at 22:08
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.