Tagline and "blog at wordpress" changes
-
Hi,
I’d like some help with the nucleare theme. I’d like to do the following:
1. Increase font size of both lines of the tagline (I already added CSS to add another line to the tagline)
2. Add a “All rights reserved” verbiage at the bottom of the site, right about the “Blog at WordPress” verbiage. I’d like this to be the same green color as the “Blog at WordPress” verbiage. Also, I’d like to reduce the size of “Blog at WordPress | Nucleare Theme.”
Thank you!
The blog I need help with is: (visible only to logged in users)
-
Hi, to increase the font size of the tagline and your added line, add the following and adjust as desired.
.site-description { font-size: 0.9em; }To add to the footer credits, you can do similar to your site description with the following.
.site-info:after { content: "All Rights Reserved"; display: block; }You can add a color declaration if you desire, or a font-weight: bold; declaration to make it stand out more.
-
Thank you for your response however neither of those CSS edits worked.
And to clarify, for #2. I need to add “All rights reserved” before site info AND make the “Blog at WordPress | Nucleare Theme” verbiage smaller – I know per wordpress.com policy it can be made smaller as long as its readable.
Can you please help me with edits specific to Nucleare theme as the above are not working?
Thanks so much!
-
Hi, you don’t have a closing curly bracket on the existing rule you have in your CSS. Add a closing curly bracket and then add the following and adjust as desired. I would not go smaller than 0.8em on the last rule, which sets the size of the existing footer credits.
.site-description { font-size: 1.5em; } .site-info:before { content: "All Rights Reserved."; display: block; font-size: 1.5em; } .site-info, .site-info a { font-size: 0.8em; } -
-
- The topic ‘Tagline and "blog at wordpress" changes’ is closed to new replies.