Home › Forums › Automattic › ThemeMin › Add Copyright Notice to Footer of Thememin
Tagged: Copyright Footer Thememin
-
AuthorPosts
-
madlyinlovewithlifeMemberHi,
I would like to add a copyright notice to the footer of Thememin, as follows:© 2014 madlyinlovewithlife All Rights Reserved
I would very much appreciate your assistance!
The blog I need help with is madlyinlovewithlife.com
Thank you!March 21, 2014 at 4:04 pm #148604
Kathryn P.Happiness EngineerTo add a copyright notice before the existing footer text, add this to your custom CSS:
#site-generator:before {
color: #000000;
content: "A9 2014 madlyinlovewithlife All Rights Reserved | ";
}This should be the result: https://cloudup.com/c8AV9vlCz9J
Let me know how it goes!
March 21, 2014 at 4:59 pm #148608
madlyinlovewithlifeMemberWow! Thank you so muchfor your prompt reply, Kathryn! It worked!
Can you tell me how I would place the copyright notice so that it would be centered on its own line in the line just above the “Blog at WordPress.com” line?
Thank you so much!
March 21, 2014 at 7:15 pm #148617
Kathryn P.Happiness EngineerTo display it on its own line, add another line before the closing curly bracket in the code I gave you above:
display: block;
Then to center the entire footer, add this as well:
#site-generator {
text-align: center;
}March 22, 2014 at 6:38 am #148638
madlyinlovewithlifeMemberThanks again, Kathryn! It worked! My copyright notice is perfectly centered. Thank you!
I have one last question though – can I center the Blog at WordPress.com line? It is currently left justified. I would like to have both lines centered.
Thanks again for all your help.
March 24, 2014 at 3:11 pm #148732
Kathryn P.Happiness EngineerHi there, it looks like you mixed the two pieces of CSS together instead of adding a second bit of code for the centering.
Remove this line from your existing CSS:
text-align: center;
Then add this separately:
#site-generator {
text-align: center;
}Sorry I wasn’t clear enough earlier.
Your end result should look like this:
#site-generator:before {
color: #000000;
content: "0A9 2014 madlyinlovewithlife All Rights Reserved";
display: block;
}
#site-generator {
text-align: center;
}March 24, 2014 at 3:26 pm #148733
madlyinlovewithlifeMemberThank you Kathryn!
This was perfect. Exactly what I wanted!
Thank you so much for your help!
March 24, 2014 at 3:39 pm #148735
Kathryn P.Happiness EngineerGreat! I’ll mark this thread as resolved and close it, but feel free to start a new one if you need help with anything else.
-
AuthorPosts
The topic ‘Add Copyright Notice to Footer of Thememin’ is closed to new replies.