Hi, I use this code snippet to center the image in jQuery mobile, it centers the image in the iphone simulator, but when I test it on the iphone, it doesn't exactly center (the center itself, but not quite), but tends to the left.
<div data-role="content" data-theme="a"> <div id="logo_image"> <img src="images/logo.png" alt="Image Header" > </div> </div>
and css -
#logo_image { text-align: center; margin-left:0 auto; margin-right:0 auto; }
Thanks in advance...
h_a86 source share