Edit the footer and header?
Permalink
How do I edit the footer and header text of the Plain Yogurt and Green Salad themes. Would like to edit the font color and size there...but seems to be part of the CSS and I'm not seeing any CSS file to edit.
Thanks.
Thanks.
and parses them. I haven't really delved into the workings of this, but I believe it is a preg-match(regex) that takes a css comment and injects an override of the standard behavior of the css attribute but requires an include mimicking the default ~siteroot/concrete/themes/default/elements/header.php include for css files.
I know that was very terse, I hope that helps :)
I know that was very terse, I hope that helps :)
I have tried to remove (This site is powered by c5) w/o success. can you help
If you're working with the default theme:
Start by copying the default theme from the core to your themes directory.
from: /concrete/themes/default
to: /themes/default
That will overide the "default" theme without messing with the core.
Then inside of the default theme open up:
/themes/default/elements/footer.php and down at the bottom you'll see:
Delete the line <span class="powered-by...
Now that I open up the file and take a look at it. You could alternately add this line to your css:
#footer span.powered-by { display: none; }
Start by copying the default theme from the core to your themes directory.
from: /concrete/themes/default
to: /themes/default
That will overide the "default" theme without messing with the core.
Then inside of the default theme open up:
/themes/default/elements/footer.php and down at the bottom you'll see:
<div id="footer"> <span class="powered-by"><?=t('Built with ')?> <a href="http://www.concrete5.org"><?=t('concrete5 CMS') ?></a>.</span> © <?=date('Y')?> <a href="<?=DIR_REL?>/"><?=SITE?></a>. ......
Delete the line <span class="powered-by...
Now that I open up the file and take a look at it. You could alternately add this line to your css:
#footer span.powered-by { display: none; }
Reply deleted by user
Alternatively, look in the typography.css file of your theme.