By Lostmonkey on
How do I center the footer message in the Bluemarine theme (phptemplate)? Currently it is left aligned.
Thanks,
Mikkel
How do I center the footer message in the Bluemarine theme (phptemplate)? Currently it is left aligned.
Thanks,
Mikkel
Comments
css change
download the themes\bluemarine\style.css file and edit the footer tag to include text-align center as follows
#footer {
background-color: #eee;
padding: 1em;
font-size: 0.8em;
text-align: center;
}
(note you are adding the line text-align: center;)
then upload the css file and overwrite the existing one
Thanks
Thanks for answering such a simple question. That can be very uncommon here sometimes
Change page.tpl.php
Change the CSS or hard code to the template.. try the following:
1.) find a file "page.tpl.php" in your drupal/themes/bluemarine -directory
2.) open the file with a text editor
3.) scroll down the file and find the following code in the bottom:
4.) change it to:
Hope this helps :)
Thank you!
It works like a charm, excellent.
:-) Mikkel
You can look up the css rule
You can look up the css rule in your style.css, it looks something like
and set text-align:center;
or style it with html in the footer textarea under administer > settings
footer fixed!
Thanks a lot! Drupal is way over my head, but these forums help a lot.