View Single Post
Old 01-15-2013, 11:47 PM   PM User | #3
samhor
New Coder

 
Join Date: Mar 2012
Location: USA
Posts: 30
Thanks: 0
Thanked 0 Times in 0 Posts
samhor is an unknown quantity at this point
Thumbs up

Quote:
Originally Posted by Excavator View Post
Hello samhor,
Your #footer is positioned, not floating at all.

This seems to be a double post as I don't see much different from your original post where I gave what I thought was a pretty accurate explanation of where your footer is and how to get it down to the bottom of the page where you want it.
Yes i know but the floating footer does not work with the below at the start in iE9 but will in FF-
Code:
<!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">
I had to remove most of it and leave it with <!DOCTYPE html>

It now works fine with the below in FF and IE9 now

Code:
div#footer {
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 815PX;
	height: 50px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
	text-decoration: underline;
	background-color: #666;
Thanks for the help
samhor is offline   Reply With Quote