How to add copyright text to footer on wordpress.com with theme Ovation?
-
Hi all
I need to add a copyright text in the footer in my wordpress page,I tried with
.site-info:after{
content: “Awesome Copyright Text.”
}But nothing happens
Note: I have a Ovation Theme
Please, help me
Thanks -
Hi! There’s no “site-info” class in this theme, so that’s why your code isn’t working. You can use a browser inspector to find the right elements to target with custom CSS.
In Ovation, this should do the trick:
.credits::after { content: "Awesome Copyright Text."; display: block; }If you prefer to keep it on one line, remove the “display: block” part.
Let me know how it goes!
-
Terrific!!
It works!
Thank you a lot @kathrynwp!!
Do you know about some CSS modification manual to this theme (Ovation)?? -
You’re very welcome!
There isn’t a CSS guide specific to Ovation, but learning how to use a browser inspector can help you customize your site with CSS in any theme. Here are some helpful guides you might want to check out:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
http://blog.thewcc.com/a-web-inspector-tutorial-for-front-end-developers/
-
- The topic ‘How to add copyright text to footer on wordpress.com with theme Ovation?’ is closed to new replies.