Here's how to replace the site title with a logo or banner: Open /content/themes/YOUR_THEME/header.php and find: PHP: <h1><a href="<?php echo BASEURL; ?>"><?php echo SITE_NAME; ?></a></h1> Replace that with this (change YOUR_LOGO.png): PHP: <a href="<?php echo BASEURL; ?>"><img src="<?php echo BASEURL; ?>content/themes/<?php echo THEME; ?>images/YOUR_LOGO.png" title="<?php echo SITE_NAME; ?>"></a> Make sure you put your image in your theme's images folder.