
Copyright notices get attached in a class called 'copyright' e.g:
| <div class="copyright"> | |
| <b>Published :</b> 2012-06-05 <br /> | |
| <b>License :</b> GPL <br /> | |
| </div> |
You can add extra information to this by the use of the CSS psuedo class 'after', e.g:
.copyright:after {
font-style: italic;
content: "First Published 1964";
}