• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Website] Footer overlapping the content

Bahzad

Banned User
Joined
Apr 6, 2011
Messages
54
Reaction score
1
Hi :)

My footer won't push down under the content. Every time the content gets longer, the footer text stays where it is.. it's not moving anywhere.. :/

HTML:
		<!-- Content-Wrap Ends Here -->	
		</div>
		
				<!--Footer Starts Here-->
		<div id="footer">
			<p>Copyright &copy; 2010 - 2011</p>
		</div>
<!-- Wrap Ends Here -->
</div>

HTML:
#footer {
	position:absolute;
	bottom: -600px;
	text-align: center;
	width: 590px;
	height: 50px;
	margin: auto;
}
 
Last edited:
2n9lu7m.png
 
Add in default.css

Code:
#cnt-box2
{
    width: 1000px;
    float: left;
}

in layout.php somewhere in the end of the document

Code:
<div id="cnt-box2">
						<center><p style="color: rgb(255, 255, 255);">Copyrights © 2010. All rights reserved.</p></center>
					</div>
 
Back
Top