Copyright Symbol in CSS
-
Hi I’m trying to figure out CSS and adding a copyright symbol into the footer. Im using The Forever Theme. Any clue on how I go about this?
The blog I need help with is: (visible only to logged in users)
-
Hello there!
You can add lines at the end of a footer with something like this:
`div#site-info:after {
content: “0a9 Donald Duck”;
}`The ‘0a9’ is the CSS code for the copyright symbol. I’m guessing you wont want to use Donald Duck….put in your own text or year there instead. :)
Good luck and let me know if you need anything else!
Have a good evening!
-
Grrrrr. I can’t get the backslash to show up in my reply!!!!
There needs to be a backslash (the slash that leans to the left) at the beginning of that 00a9 code. The forums strip it out for some reason, even if I use the code markup.
Let me try it again:
div#site-info:after { content: "0a9 Donald Duck"; }If that doesn’t work, the code for it is backslash00a9. I hope that makes sense.
-
I give up! :(
My brain can’t figure out the forums formatting this evening. Sorry!!!! It still didn’t show up the way I wanted it to.
-
Hmmm, the forums seem to be eating the backslash.
00a9
Use the above, but without the space between the backslash and the 0.
- The topic ‘Copyright Symbol in CSS’ is closed to new replies.