View Single Post
  #12  
Old 01-30-2008, 10:31 PM
fredxeric's Avatar
fredxeric Offline
pixelpost guru
 
Join Date: Sep 2006
Location: Montréal, Québec, Canada
Posts: 407
Send a message via AIM to fredxeric Send a message via MSN to fredxeric
Quote:
Originally Posted by fred-eric View Post
Yes, simply add the fallowing:

open file design.css add text-align: center; at line 83
Code:
/* .............................. */
/* navigation-footer */
/* .............................. */
#footer {
position:fixed;
bottom : 0;
width:100%;
height:20px;   /* Height of the footer */
z-index:1000;
text-align: center;
}
also add this code in the same file just under the #footer around line 113

Code:
.copyright {
position: fixed;
}
then go into image_template.html and add the fallowing just under the div called footer.

Code:
<span class="copyright">&copy; Your name here</span>

This code doesn't work under FF and Safari... I will try something else tomorrow.

If you find a solution to this problem, please send the info here.
Reply With Quote