Posts: 37
Name: Ryan
Location: Indianapolis, IN
|
in ie6 my text wont wrap even though its floated.
help?
Code:
<div id="content">
<h1>Experience</h1>
<img src="images/cotlar02.jpg" class="floatLeft" alt="cotlar02">
<p style="float: left; display:inline;">Dr. Cotlar practiced general internal medicine from 1980 through 1995 and volunteered on a part time basis as a faculty staff member for the Indiana University – Methodist Hospital internal medicine residency program up until 2004.</p>
<p>Insurance Medicine experience began in 1993 when Dr. Cotlar became the Medical Director of Indianapolis Life Insurance Company, which later became part of the AmerUs Life Insurance Group, and later AVIVA. As a corporate Medical Director, he was active in both the American Academy of Insurance Medicine (AAIM) and the American Council of Life Insurance (ACLI). In April 2007, Dr. Cotlar began his consulting business, Strategic Medical Consulting, Inc. He continues being active in the education arm of AAIM. Board certifications include both Internal Medicine and Insurance Medicine</p>
<p><a href="files/cotlar_cv.pdf"><u>Download Dr. Cotlar's CV</u></a></p>
</div><!--end content-->
Code:
#content img.floatLeft {
float: left;
display: inline;
margin: -8px 8px -1px 0px;
/* padding: 0px 0px 0px 10px;*/
}
|