When I view the website on a mobile device, the footer div is halfway up the page (on my desktop PC its at the bottom).
Nothing yet as not sure where to start. tried position:absolute;
in the CSS of the footer to no avail.
CSS
#footer {
width:1460px;
height:80px;
background-color:#FF0;
font-weight: bold;
}
HTML
<div id = "footer"> <script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">
</script>
<script type="text/javascript">
function scrollToBottom() {
$('html, body').animate({scrollTop:$(document).height()},
'slow');
}
function scrollToTop() {
$('html, body').animate({scrollTop:0}, 'slow');
}
</script>
<a href="javascript:scrollToTop()"><img src="images/scroll.png"
alt="Scroll to Top" title="Scroll to Top" width="42" height="37"
hspace="65" vspace="20" /> </a><a
href="http://www.facebook.com/woodzyweb" onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('Woodzy','','images/wwd_roll.png',1)"><img
src="images/wwd.png" alt="Visit Our web Designer Facebook Page"
name="Woodzy" width="150" height="47" border="0" id="Woodzy" />
</a>website designed by:</div>
No error messages that I'm aware of; just wish to fix footer to the bottom.