PDA

View Full Version : Tricky footer



okbak
04-23-2010, 06:51 PM
Hello every body. I am new at coding so i am asking for help.i want my footer to alwais be at the bottom in my page that loads pictures via an javascript code.

here is the section of script that bugs me:
<div id="divm">

<p style="text-align:center;font-weight: bold;font-size:20px;">Recent manga Updates:</p>
<script type="text/javascript">
for (q=1;q<=myz.length-1;q++)
{img(q);};
document.write('<br />');
</script>


<div class="divfoot" align="bottom"><a style="font:12px ;">@2010 Okbak </a><a href="default.html" class="adivbm">| Home |</a><a href="manga-online.html" class="adivbm"> Updates |</a><a href="manga.html" class="adivbm"> Manga |</a><a class="adivbm" href="mailto:contact@okbak.com">Contact Us</a></div></div>

and here is the url: http://www.okbak.com/manga-online.html

shadmego
04-24-2010, 12:07 AM
Check out
following css code on your "divfoot" class:


position: fixed;
bottom: 0;


Untested in IE