Add copyright to footer
-
Hi, I want to add Copyright Freely Fatima. All Rights Reserved. to the footer of my website. I am using Adelle theme.
Here’s my website: freelyfatima.comThe blog I need help with is: (visible only to logged in users)
-
Hi Fatima,
Try this and let us know if it helps –
/* Add copyright to footer using content property & pseudo element */ .site-info:before { color: #DAB56C; content: 'Copyright Freely Fatima. All Rights Reserved.' }If you’d like the copyright symbol instead of the word, simply replace the word copyright with 0A9 – like so –
/* Add copyright to footer using content property & pseudo element */ .site-info:before { color: #DAB56C; content: '0A9 Freely Fatima. All Rights Reserved.' } -
Sorry, I botched the copyright symbol in that second block of CSS.
/00A9 is for the symbol –
/* Add copyright to footer using content property & pseudo element */ .site-info:before { color: #DAB56C; content: '0A9 Freely Fatima. All Rights Reserved.' } -
Hmm… for some reason the editor seems to be stripping some of my characters.
I hope I haven’t thoroughly confused you. The first block of CSS in my original post will give you exactly what you asked for.
-
Hi, I’m trying to do the same to my Twenty Ten Theme.
I’m a bit clueless on CSS. I copied and pasted the above into my CSS editor and clicked Preview but it didn’t seem to work.Any idea why? Do, I replace the CSS default instructions? Or copy it below it? Should the code be different for my theme?
My blog is stemroots.net.
Any pointers are much appreciated. Thank you.
-
@jengirl3
All CSS editing is theme specific editing. Please use this link https://en.forums.wordpress.com/forum/css-customization#postform so you can copy and paste your text into your own thread that will appear in the CSS Forum where you will get the help you need. -
Thank you. I’m not sure what the gray Admin bar is our how I removed it/how to get it back. Does that go in the same forum as well?
-
Hi, I’m trying to do the same to my Twenty Ten Theme.
I’m a bit clueless on CSS. I copied and pasted the above into my CSS editor and clicked Preview but it didn’t seem to work.Any idea why? Do, I replace the CSS default instructions? Or copy it below it? Should the code be different for my theme?
My blog is stemroots.net.
Any pointers are much appreciated. Thank you.
-
This is how to add to your footer in Twenty Ten:
#site-generator:before { content:"a9a0lalalalala!"; font-style:normal; } -
This will work as well –
/******** Add Copyright ***************/ /* set color */ #site-info { color: #000; } /* text before */ #site-info:before { content: 'Copyright ' } /* text after */ #site-info:after { content: '2014, all rights reserved.' }
- The topic ‘Add copyright to footer’ is closed to new replies.