html - how do i center align images on a mobile device -
i creating basic mobile version website. in contact page have facebook & linkedin logo side side. center aligned when viewed vertically. when screen rotated (in iphone) facebook logo moves left , not centered. below link page.
http://www.prithvichandra.com/lennox/mobile/contact.html
all appreciated.
thanks
hope css can fix :
/* .social-network-wrapper{ width:95%; margin: 10px 5%; float:left;} .fb-wrapper, .ld-wrapper{ width:29%; float:left; text-align:center;} */ .social-network-wrapper {float: left; width: 100%;} .fb-wrapper, .ld-wrapper{ width:48%;} .fb-wrapper{text-align:right; float: left;} .ld-wrapper{text-align:left; float: right;}
and change line :
<div class="fb-wrapper" style="margin-left: 72px;">
to
<div class="fb-wrapper">
Comments
Post a Comment