how do i remove site title?
Permalinki'm a newbie and have just started working with c5 today so please make your explanation simple. i'm not a programmer either.
thanks!
<?php
defined('C5_EXECUTE') or die(_("Access Denied."));
$this->inc('elements/header.php'); ?>
<div id="central">
<div id="sidebar">
<?php
$as = new Area('Sidebar');
$as->display($c);
?>
</div>
<div id="body">
<?php
$a = new Area('Main');
$a->display($c);
?>
</div>
<div class="spacer"> </div>
</div>
<?php $this->inc('elements/footer.php'); ?>
any ideas about what needs to be deleted in this doc??
thanks.
<h1 id="logo"><a href="<?php echo DIR_REL?>/"><?php echo SITE?></a></h1>
so, i'll delete that line and upload the theme folder with a new name and put it in the theme folder that's located outside of 'concrete'. that won't change my designed pages, it'll just remove the header, right?
thanks!
Just delete the entire line with <h1>....</h1>
and in the same spot add
<img src="http://LINK">
This will just point to the pic you want instead of adding it the simple way. If you added an image that was overlapping the site name it will be too far down now, just delete it and add the code above.
Either way you're going to have to modify header.php, so just add the image there. Otherwise you will have to modify the header file to make more space so you can add an image in normal edit mode, but I really don't know how to do that. Maybe a <br> or <p>?
Thought that might help a little
look for this in your template in default.php
delete that or comment it out, that will get rid of the link and thus your site title or you can change it to an image if that floats your boat.