Changing the footer for Hustle Express Theme
-
What is the proper way to change the footer for the Hustle Express theme? By default it says (for my blog) “Problem Solving Blog at WordPress.com. Customized Hustle Express Theme”. And “Customized Hustle Express Theme” has the tool-tip “Learn about customizing this theme with the Custom Theme Upgrade” which I think is tasteless since I already have that upgrade.
Currently, I have this in my custom CSS:
`
.site-info {
visibility: hidden;
}
`Which at least hides the default text, but is there a way to change the text? I want a copyright notice there instead.
Thank you,
Michael
The blog I need help with is: (visible only to logged in users)
-
The WordPress.com and footer credits have to remain visible here at WordPress.com per the Terms of Service, #11, so could you please un-hide them by removing the following from your custom CSS:
.site-info { visibility: hidden; }You can add to the existing footer credits, either before or after by using pseudo classes in the CSS. Your site name is shown in the existing credits at left. The following code removes that and then adds a copyright above the existing credits for you.
#site-info { display: none; } .site-info:before { content: "My Copyright Notice"; display: block; color: #cc0000; letter-spacing: 1.1px; font-size: 110%; } -
Ugh, you’re right. I thought with a premium account, I wouldn’t have to display the advertisements at the bottom. Ahh well, I re-displayed them.
Thanks for your help with the copyright notice. It worked great!
— Michael
-
- The topic ‘Changing the footer for Hustle Express Theme’ is closed to new replies.