Edit Footer in Greek Yogurt Theme
Permalink
i'm totally new to the concrete5-world, so first: hi there! :-)
so my question is, how to edit the footer of the default greek-yogurt-theme. i already find the footer.php and the mein.css to edit some details. but there are 2 more things i want to edit.
edit wish one: changing the height of the footer. how and where is this defined?
edit wish two: changing the login-text into a grafic (maybe a lock-icon, opened an closed)
i'm happy if someone can teach me to get to the right variables... =)
thanks in advice!
Lucius
so my question is, how to edit the footer of the default greek-yogurt-theme. i already find the footer.php and the mein.css to edit some details. but there are 2 more things i want to edit.
edit wish one: changing the height of the footer. how and where is this defined?
edit wish two: changing the login-text into a grafic (maybe a lock-icon, opened an closed)
i'm happy if someone can teach me to get to the right variables... =)
thanks in advice!
Lucius
Id be happy to help you out quick. I will pm you...
For the first issue you can try adding this to main.css:
it's defaulting to 150, reducing it like this to 100 looks much nicer like you want.
For your second issue find:
in your footer.php. Change it to something like:
do similar just above for the "echo t sign out".
div#main-container #footer { min-height: 100px!important; }
it's defaulting to 150, reducing it like this to 100 looks much nicer like you want.
For your second issue find:
<?php echo t('Sign In to Edit this Site')?>
in your footer.php. Change it to something like:
<img src="http://path/to/my/lock/image_file.png">
do similar just above for the "echo t sign out".
absolutely great, worked like a charm - thanks alot!