function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DannyK89DannyK89 

Getting text to show up at the bottom of the page.

I am trying to put a copyright text at the bottom of everyscreen. I am having some trouble. I tryed an outputtext tag but I can't get it to appear at the bottom. Can anyone help me out.  Thanks.

 

Here is what I have so far:

 

<div align="center"><apex:outputText value="Copyright © 2010 Solving IT"/></div>

 

Best Answer chosen by Admin (Salesforce Developers) 
vhanson222vhanson222

try the code below:

 

	<style>
		#footer { 
			position: fixed; bottom: 0;
		}
	</style>

<div id="legalInfo" class="footer" style="margin-left:10px;margin-top:5px;margin-right:10px;height:15px;border-bottom:1px solid #EAEAEA;border-left: 1px solid #EAEAEA;border-top: 1px solid #EAEAEA;border-right: 1px solid #EAEAEA;-moz-border-radius: 5px;background-color:#F0FFFF;padding:10px">
		Copyright 2010-2011
</div>

 

All Answers

vhanson222vhanson222

try the code below:

 

	<style>
		#footer { 
			position: fixed; bottom: 0;
		}
	</style>

<div id="legalInfo" class="footer" style="margin-left:10px;margin-top:5px;margin-right:10px;height:15px;border-bottom:1px solid #EAEAEA;border-left: 1px solid #EAEAEA;border-top: 1px solid #EAEAEA;border-right: 1px solid #EAEAEA;-moz-border-radius: 5px;background-color:#F0FFFF;padding:10px">
		Copyright 2010-2011
</div>

 

This was selected as the best answer
Shashikant SharmaShashikant Sharma

You can try this 

 

style="float:right"