Adding Copyright to Footer
- The topic ‘Adding Copyright to Footer’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
I would like to add copyright to my footer and have tried using the code given here:
https://premium-themes.forums.wordpress.com/topic/copyright-2/
Unfortunately it doesn’t seem to be working for me. I have tried copy and paste as well as typing it out again.
Any help is much appreciated.
The blog I need help with is: (visible only to logged in users)
Hello there!
Thank you for writting.
Yes, the color font is set to white by default, the same as the background, so no text is visible.
Add this CSS with the color HEX you want, the font size and if you want to transform or not the text to uppercase:
#colophon p.info:after {
content: "© 2018 horadeir.com All rights reserved";
display: block;
color: #5a5a5a;
font-size: 12px;
text-transform: none;
}
You can pick HEX color codes here: https://htmlcolorcodes.com/
Hope this helps,
Ricardo P.
This is perfect!
Thank you Ricardo!
Nice!!
You are welcome