View Single Post
  #9  
Old 01-30-2008, 02:01 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 niknkim View Post
great template.

is it possible to have the copyright notice appear in the same position on the main page too?


thanks

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>
Reply With Quote