Edit CSS to hide credit on static page and remove RSS
-
I’ve been reading everything on hiding/removing WordPress and Theme credits in footer as well as for removing RSS feeds. I bought the CSS upgrade and tried adding this (in 2 separate CSS edits):
#footer p {
display:none;
}#feeds li {
display:none;
}Neither has worked.
Please do not lecture me on how ethical removing the credits is or not. I do promote giving credits to authors and understand the concept fully. I do not want “Blog at WordPress” on my static pages. I would be more than happy to have those words on the BLOG page, not the static pages. I would also be more than happy to give credit to the theme author on my static pages (except on the home static page) but on my own terms. But that is not possible, is it?
If somebody out there is willing to help with this, that would be appreciated.
The blog I need help with is: (visible only to logged in users)
-
.f1 {
display:none
}should work for the bottom left of the footer. But it will remove it for all pages.
Which part of the theme do you mean about the RSS?
And it is perfectly fine to do so, no ethics involved :)
-
Thanks Mark,
But that does not change anything. The footer’s still there (as if the edit doesn’t “take”). And I did save the stylesheet.
The RSS box is in the top right corner of the page.
Thanks again.
-
The code above will also hide the navigation menu. To hide the footer and the RSS feeds only on static pages use:
body.page .footer, body.page .subscribe {display:none;} -
- The topic ‘Edit CSS to hide credit on static page and remove RSS’ is closed to new replies.