The footer is not the problem. I know how to fix the footer. What i dont know is how to fix the 2 columns.
Main Topics
Browse All TopicsPlease look at this web page (http://www.fireandsecurit
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I have looked at the markup. The two columns are wrpped in two divs See markup below:
<div class="digispecback">
<img src="SiteImages/digispec1.
</div>
<div class="digispecback" style="margin-left: 1px;">
<img src="SiteImages/digispec2.
</div>
The relevant Css is below:
.digispecback{
width: 361px;
height: 450px;
margin: 0 13px 15px 13px;
float: left;
padding:0;
}
The entire width of the content wrap is 770 pixels.
#wrapper{
width: 770px;
height: auto;
background-color:#FFFFFF;
text-align: left;
border: 1px solid #000000;
margin: 0 auto 18px auto;
}
I'm sorry, but the only thing I can see that is wrong with Firefox can be fixed with the code I've suggested. I'm not sure exactly what it is we are trying to fix. So we are on the same page...
In IE7:
http://share.nunnone.com/
In Firefox:
http://share.nunnone.com/
The only difference I can see is that the footer bar doesn't wrap around the last two images. If that is not the problem what is? Otherwise the two look identical to me.
Sorry to harp on this, but have you tried what I originally suggested? The two images overlap the footer yes? Is that what we're trying to fix? Then put 'clear:both' in the footer css and try it.
The overlap on the footer is the problem I originally tried to fix. If there is another one, I honestly cannot see it and someone else needs to step in here.
Business Accounts
Answer for Membership
by: joshnunnPosted on 2007-03-26 at 05:35:00ID: 18792228
Add 'clear: both;' to the footer css:
#footer{
height: 30px;
background-color: #dddddd;
text-align: center;
padding-top: 10px;
width: 770px;
clear: both;
}
Works for me.