problem with overflow on the footers need help urgent

shapi

New Member
hi, when i add the scribd or a video or some text all the boxes and plain text pass through the footer of the site, i need some help to know how to close it and make it dynamic in accordance to the quantity of boxes or text i set there,

as example here how is written the code in one page:

<a title="Weapon Upgrade" href="http://defensetechs.com/?portfolios=accesories-for-weapons-1"><span style="color: #232e36;">Weapon Upgrade</span></a> | <a title="Holsters and Pouches" href="http://defensetechs.com/?portfolios=accesories-for-weapons-2">Holsters and Pouches</a>

[button size="small" href="http://defensetechs.com/wp-content/uploads/2012/06/pistol carbine conversion defensetechs.pdf.zip" target="_blank" bg_color="#4f762a" align="left"*text_color="#ffffff"]Download File[/button]

<hr />

<iframe src="http://player.vimeo.com/video/43459807" frameborder="0" width="500" height="375"></iframe>

<a href="http://vimeo.com/43459807">Pistol Upgrade</a> from <a href="http://vimeo.com/user11985757">DefenseTechs</a> on <a href="http://vimeo.com">Vimeo</a>.

<iframe id="doc_70929" src="http://www.scribd.com/embeds/94908479/content?start_page=1&amp;view_mode=list&amp;access _key=key-vpymt6es5jqf91bj3er" frameborder="0" scrolling="no" width="100%" height="600" data-auto-height="true" data-aspect-ratio="0.708333333333333"></iframe>
 

PixelPusher

Super Moderator
Staff member
We will need the css information to properly help you with this issue. A live url couldn't hurt either. Off the top of my head, are you floating any of the elements in the footer? If so you will need to clear the floats. Try setting the overflow property of the footer to hidden.
Code:
#footer {
overflow:hidden;
}
 
Top