Hi - I discovered a problem with images. I can’t go through every page and reduce the image sizes AND change the html (floats) to fit into mobile.
Do you know how I can scale all the images AND .txtpic to be mobile-friendly?
http://greensmoothie.com/test/1mst.php
My images are either centered like this:
<p class="cnt"><img src... /></p>
Or they display side-by-side with text (or with another image) like this:
<div class="txtpic w100 clearfix">
<div class="flft cnt w30"><img src="... />
<p class="cap lft w80 hcnt">image caption</p>
</div>
<div class="frgt lft w65">
<p>text</p>
</div>
</div>
css:
.cnt {text-align:center}
.txtpic {margin:15px auto 20px; padding:0}
.w100 {width:100%}
.flft {float:left}
.w30 {width:30%}
.cap {font:0.75em/1.5 "Lucida Sans Unicode",Verdana,sans-serif} /*img caption*/
.cap img {margin:3px 0}
.frgt {float:right}
.lft {text-align:left}
I thought we originally a few years back floated the images like that so that if it didn’t fit, the right-hand float would drop to the next line?
My goal is just to change the header & footer areas of every page, to fit mobile – NOT to go into each individual page and make months-long changes there!
thank you! - Val