I am using drupal version 7 and using Professional Theme 7.x-2.04.
I have text "Copyright Lifestyle Interiors 2015". It is left aligned by default. I need to make it Centre Aligned and make the format as bold , how do I do that?
Remove credits (or merge them with copyright <p>
) from page.tpl.php
<p class="credits"> Theme Originally Created by <a href="http://www.devsaran.com">Devsaran</a></p>
In style.css
:
text-align: center;
into #copyright
:#copyright {
background: #ccc none repeat scroll 0 0;
box-shadow: 0 -1px 3px #ccc;
clear: both;
color: #000;
line-height: 40px;
padding: 0 20px;
text-align: center;
}
.copyright
/*.copyright {
float: left;
max-width: 728px;
}*/
I have got it now how to do it. I was unable to locate the css file earlier.Open the page where footer is located in chrome. For firefox use firebug. Right on the Footer -> Choose Inspect element
Here move to the css section
add text-align:center; to your code see the results.
Now do the same in original css file.