Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
just by copying what was given this worked,

Code:
<html>
<head>
	<style type="text/css">
	html
{
height: 100%;
}

body
{
height: 100%;
}

#nonFooter
{
position: relative;
min-height: 100%;
}

* html #nonFooter
{
height: 100%;
}

#content
{
padding-bottom: 9em;
}

#footer
{
position: relative;
margin-top: -7.5em;
} 
	</style>
</head>
<body>
<div id="nonFooter">
<div id="content">
</div>
</div>
<div id="footer">daasfdaf
</div>
</body>
</html>
 
all it done is give me errors: your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: Content is not allowed in trailing section.

i pasted it at the top, where do you paste it...
 
The CSS should be in an external stylesheet (called mainstyle.css for example) . With a link to it in the head of the html.

e.g.

Code:
<html>
	<head>
		<link rel="stylesheet" type="text/css" href="mainstyle.css">
		<!--Other head content-->
	</head>
	<body>
		<!-- body content-->
	</body>
</html>
 
tried it, didn't work... i think i am just over my head with the coding... hopefully someone will understand it :D
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.