How to use logo instead of site name
If you want to have a logo instead of Site name in the header of your pages, do the following:
1. Locate the directory of your theme. For default (Plain Yogurt) theme it is /concrete/themes/default/
2. Upload your logo (for example, logo.jpg) to the images directory inside your theme directory.
3. Find the template header.php file at the directory with the theme you are using.
For example, header.php for default (Plain Yogurt) theme can be found in /concrete/themes/default/elements/
4. Open the file and find the code:
<h1 id="logo">
<a href="<?php echo DIR_REL?>/">
<?php echo SITE?></a></h1>
5. REPLACE
<?php echo SITE?>
WITH
<img src="<?php echo $this->getThemePath()?>/images/logo.jpg" alt="logo" />
Of course, images/logo.jpg must be the filepath for the logo you upload at step number 2.
