Code: Select all
http://www.tapatalk.com/

Code: Select all
http://www.tapatalk.com/





Actually on my Android HTC Desire (using the default browser), it doesn't render particularly well. For some reason, the left hand edge of the page is cut off, including some text, and although you can scroll to the right, no amount of scrolling to the left will reveal the hidden bit.Steve wrote:Don't know about Android but the forum renders nicely on mobile Safari and is quite quick, hence the reason I've been in no rush to test tapatalk.



This appears to be saying "set the left of the container to 50% the way across the page width, then use a margin of -512px", in order to centre the 1024px container.#container {
position: absolute;
left: 50%;
margin-left: -512px;
width: 1024px;
margin-top: -4px;
}
It gives you a centred page, more or less exactly as you have it, but the page now behaves when the window goes below 1024px. I've tested this on FF and IE, under Windows, and on my Android Phone. I can't test it with an Iphone, but I don't see any reason why it shouldn't be ok.#container {
margin:0
auto;
width:1024px;
}
