Link to home
Start Free TrialLog in
Avatar of twentythree
twentythree

asked on

CSS weird image padding on bottom

I'm having a problem with getting my footer to align to the very bottom of my page. I've already tried padding:0 and margin: 0 and it doesn't work. The problem is directly related to the image in the footer because if I remove it the divs go all the way to the bottom of the page like they are supposed to.
<div align="center" style="clear: both; vertical-align: bottom;">
<div style="width: 98%;">
<br />
<br />
<br />
<div id="Footer" style="position: relative; padding: 10px; height: 30px;">
<div style="float: left; text-align: left;">
<a href="contact1.asp">Contact us</a> / <a href="faqs.asp">FAQ</a>
</div>
<div style="float: right;  text-align: right; padding-right: 70px;">
<a href="../privacypolicy.asp">Privacy Policy</a><br />
All content and designs &copy; 2001-2009 Bodyartforms LLC unless otherwise stated
</div>
</div>
<a href="http://www.bbbonline.org/cks.asp?id=10508179342">
<img src="images/logo_BBB_Footer.png" alt="BBB" style="position: relative; z-index: 10; float: right; padding-right: 10px; top: -65px;" />
</a>
</div>
</div>

Open in new window

Avatar of dr_lionheart
dr_lionheart
Flag of United States of America image

i did not get your idea yet
but replace your footer div with this
<div id="Footer" style="position: relative; padding: 10px; height: 30px;margin-bottom: 0;padding-bottom:0;">

Open in new window

The footer dive needs to be in its own area outside of your content divs.   Ive recoded it for you as the code was a bit sloppy, now it should be a bit more readable and you should understand it pretty easy.

I dont know where your trying to put your image, but it seems your issue was wanting to have the footer be at the bottom.  Now it is.  If you need help with the image placement, I can help further if you can describe what your trying to do with it :)

Cheers,

Rich
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
.content {clear: both; vertical-align: bottom;}
.left_side {width: 98%;}
.footer {position: relative; padding: 10px; height: 30px;}
.left_footer {float: left; text-align: left;}
.right_footer {float: right;  text-align: right; margin-right: 70px;}
.image {}
 
</style>
 
</head>
 
<body>
 
<div class="content">
	<div class="left_side">
		<br />
		<br />
		<br />
		
        <a href="http://www.bbbonline.org/cks.asp?id=10508179342">
            <img class="image" src="images/logo_BBB_Footer.png" alt="BBB" />
        </a>
    </div>
</div>
 
<div class="footer">  
	<div class="left_footer">
		<a href="contact1.asp">Contact us</a> / <a href="faqs.asp">FAQ</a>
	</div>
	<div class="right_footer">
		<a href="../privacypolicy.asp">Privacy Policy</a><br />
					All content and designs &copy; 2001-2009 Bodyartforms LLC unless otherwise stated
	</div>
</div>
 
 
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of twentythree
twentythree

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial