My content isn't responsive at the moment. I've tested it on iPhone and the text goes over the screen.
I've changed the CSS of my container to:
#container2 {
width: 960px;
max-width: 90%;
position: relative;
left: 50%;
margin-left: -480px;
line-height: 1.4em;
}
When I test it after the change, the content disappears. I read that putting max-width:90%; would allow it to not exceed the boundary width (http://webdesignerwall.com/tutorials/5-useful-css-tricks-for-responsive-design) but obviously it didn't work. What am I doing wrong?
left: 50%;andmargin-left: -480pxmight be redundant, but can't tell without seeing your context. For a responsive page it would be more useful to use percentage rather than pixel size definitions. And you might want to look into CSS media queries – shakabra Sep 28 '12 at 1:54