copyright notice in footer
-
I am using Sketch Theme with custom design premium. How do I add a copyright notice to the footer using the CSS editor?
The blog I need help with is: (visible only to logged in users)
-
Hi krcsuk,
This should work for your theme — let me know if you have any additional questions.
div.site-info:after { content: " | YOUR COPYRIGHT INFO."; } -
Same thing for me. I am using Moesia . How do I add a copyright notice to the footer using the CSS editor?
The blog I need help with is NicholeReneeEnterprises.com. Thanks!
-
Hi @chameleonfg1, it looks like you are using WordPress but you are not hosted here at WordPress.com. For self-hosted WordPress sites such as yours, I would suggest asking for help from the theme author directly or ask in the volunteer-based WordPress.org Themes and Templates forum.
For general questions on self-hosted WordPress.org installations, visit http://wordpress.org/support/.
-
-
-
Thanks daschultemn,
I tried the code with my notice and it wasn’t visible when I previewed. Do I need god add anything else?
Thanks again for your help with this
-
Your site is protected, krcsuk. That makes it difficult to gauge and assess. I would just save the custom CSS that I suggested and see if that makes the change you’re looking for in your footer.
-
@krcsuk, I just tried the code @daschultemn gave on your site and it worked for me. I’ve taken the code they gave and modified it a bit to change the copyright text to black and make it bold so it stands out from the existing footer credits. The display: block; declaration makes it appear on its own line. Also, I have changed it so it appear before the existing footer credits.
div.site-info:before { content: "Your Copyright Info"; display: block; color: #000; font-weight: bold; }
- The topic ‘copyright notice in footer’ is closed to new replies.