views:

861

answers:

2
+7  A: 

Use:

<img src="images/ih01.jpg" style="float: left; height: 110px; width: 80px; " >

instead of align. The align attribute is deprecated.

recursive
Man, I never knew IE7 stopped supporting align. Cheers.
nickf
You beat me by like 2 seconds.
Triptych
+2  A: 

First off, "align" is deprecated. You'll want to use the CSS float property here.

<p>
    <img src="images/ih01.jpg" style="float:left;height:110px;width:80px" />    
    This course overs basic human anatomy and physiology, including the major
    body systems and their functions. When you have completed this course you
    will be able to identify major body components and their core physiological
    functions.
</p>

It's time to take a "time out" to learn about floats!

Dave Markle
hehe I know about floats and CSS - this is code from our CMS that a non techie created with a WYSIWYG, and I was hoping to be able to avoid re-writing all that code!
nickf
Ahh my old friend the WYSIWYG editor...
alex
Ah, WYSIWYG web editing in the days before DIVs and CSS. Got to love it.
Dave Markle
If the align attribute is the only problem, you can probably fix it with a search/replace.
recursive