I have just used Adobe Browserlab to view my website with IE7 as my work laptop has IE9.
It appears wherever I have my div floating, it is not holding?
One instance of this is where I have icons on my page, they should be floated left but run down the page.
I am currently running blind at the moment cause I can't pull the site down to testing as I am behind my network.
Could anyone suggest an IE7 hack to quickly fix this issue?
All other browsers appear ok.
http://www.auscoalsuper.com.au/super-members
Thanks
Replace the below (in your section-home.css file)
#quicklinks li{display:inline;}
with this:
#quicklinks li {
margin: 0;
padding: 0;
list-style: none;
float: left;
}
Then add <br style="clear: both; /> in the html code, position shown below:
</ul>
<br style="clear: both" />
</div><!-- End Quicklinks -->