View Full Version : Lessen space between my flash slideshow and footer
Momentmaker
Aug-21-2008, 11:02 AM
How do I lessen the space between my flash slideshow (in place of bio on homepage) and my footer (Live, laugh, and love in the moment)? Thanks for your input! www.hollybrowder.smugmug.com
Allen
Aug-21-2008, 03:04 PM
How do I lessen the space between my flash slideshow (in place of bio on homepage) and my footer (Live, laugh, and love in the moment)? Thanks for your input! www.hollybrowder.smugmug.com (http://www.hollybrowder.smugmug.com) In your footer change this
<div align="center">
<h2></h2>
<center><img src="http://hollybrowder.smugmug.com/photos/355982329_fURnV-L.gif" border="0"></center>
</div>
To this. The h2 were creating a space.
<center><img src="http://hollybrowder.smugmug.com/photos/355982329_fURnV-L.gif" border="0"></center>
If you want it even closer you'll need to make it a div.
<div id="myFooter">
<img src="http://hollybrowder.smugmug.com/photos/355982329_fURnV-L.gif" border="0">
</div>
and add this to your CSS
#myFooter {
text-align: center;
margin-top: -40px;
}
btw, remove the red extra }'s from your CSS
.possess {
display: none;
}
}
#ssSlide {
height: 400px;
margin-top: 20px;
}
}
Might as well remove the #ssSlide, it was for the old slideshow.
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.