Monday, August 24, 2009

To add Copyright on Footer



To add Copyright symbol on Footer

  • Go to Layout -> Edit HTML
  • Search for Footer wrapper...something like given below,


<div id='footer-wrapper'>
<b:section class='footer' id='footer'/>

  • After finding Footer-wrapper,insert the below tags and your desired content


<p> <center> Content Copyright &#169;
2009 by ikshaa. All rights reserved.</center></p>

for copyright symbol use UNICODE
&#169;=&copy;=©

  • So the final code should be like this:


<div id='footer-wrapper'>
<b:section class='footer' id='footer'/>
<p> <center> Content Copyright
&#169; 2009 by ikshaa. All rights reserved.</center> </p>
</div>


Hope you found this useful...

Happy Blogging,


3 comments:

LLL said...
This comment has been removed by a blog administrator.
Dominique said...

Thank you for those clear instructions. I now know how to add a copy to my footer on blogger! Dominique

Krisanne said...

So easy--thank you!