Wrapping text Around Images
-
Ok now I have a new problem. Wrapping text around images. I followed the tutorial and added this to the .css:
p img { padding: 0; max-width: 100%; }
p.center { text-align: center; }
p.right { text-align: right; }
p.blue { color: blue; }
p.red { color: red; }
p.green { color: green; }
p.purple { color: purple; }
p.black { color: black; }
img.right { padding: 4px; margin: 0 0 2px 7px; display: inline; }
img.left { padding: 4px; margin: 0 7px 2px 0; display: inline; }
img.center {display: block; margin-left: auto; margin-right: auto}I used this code in the post:
<img src="/wp-images/nativity.jpg" alt="Nativity Scene" class="left" />
Now this works great when looking at it in Firefox, but in IE the image is blank. What gives?You can see the post here:
https://uncooperativeblogger.com/2005/12/01/the-war-on-christmas/
- The topic ‘Wrapping text Around Images’ is closed to new replies.