HELP!!
I have the same problem with another site I am working on. Prepend
and pull are not working in IE7, WHY NOT?
Here is the markup for my current site:
<div id="content" class="span-24 home">
<div id="maincontent" class="span-14 prepend-9">
<div class="main mcontblock">
<div class="drophalf">
<?php include("$root/external/
ext_webtext/webtext_sect1.inc.php"); ?>
</div>
</div>
</div><!--End maincontent div-->
<div id="scdcontent" class="span-9 pull-23 last
drophalf">
<div class="scontblock">
<?php include("$root/external/ext_webtext/
webtext_sect2.inc.php"); ?>
</div>
<div class="scontblock">
<?php include("$root/external/ext_webtext/
webtext_sect3.inc.php"); ?>
</div>
<div class="scontblock">
<?php include("$root/external/ext_webtext/
webtext_sect4.inc.php"); ?>
</div>
</div><!--End scdcontent div-->
</div><!--End content div-->
Again, this works in all browsers that I have tried except IE7. In
IE7 either push-x or prepend-x cause the secondary content to drop
down below the main content, then pull-x causes the secondary content
to get pulled off the page entirely. The way I know this is I created
a CSS rule in ie.css that made pull-23 ( margin-left:0; ) and the
secondary content shows up correctly *except* that it is below the
main content. Surely others have encountered this, what is the
solution?