Docs -> Changing The Logo
To change the logo in FCMS, simply edit the header file for each theme your website uses.
FCMS 1.9 and earlier
To change the logo in FCMS, simply edit the header file for each theme your website uses.
- Upload a new logo to your website in the images/ subdirectory of the theme you are using (ex: themes/default/images/mylogo.gif)
- Change the img source of the logo in the header.php file to point to the file you uploaded in step 1.
<body id="top"> <div id="header"> <div id="logo"> <a href="<?php echo $TMPL['path']; ?>index.php"> <img src="<?php echo $TMPL['path']; ?>themes/default/images/mylogo.gif" alt="<?php echo getSiteName();?>"/> </a> </div>
FCMS 1.9 and earlier
