I have seen code in an answer to this question, how to remove the promotional back link to WordPress.org in my theme. I have added this to my theme’s CSS but there is no change.
Am I missing see some thing? Apologies for my Ignorance .
Code I have used:
#site-generator {
display: none; }
How can you remove the widgets from dashboard and add new customized widgets ?
Is there possibility to hide the date and time from posts ?
Update :Could anybody tell me ,If I can remove the term ‘wordpress’ from displaying on title bar?
Here is the code I always use whenever I setup a new wordpress blog:
CUSTOM ADMIN FOOTER TEXT
REMOVE VERSION INFO FROM THE HEAD OF FEEDS
REMOVE JUNK FROM THE HEADER OF PUBLIC WEBSITE PAGES
REMOVE THE WORDPRESS UPDATE NOTIFICATION FOR ALL USERS EXCEPT SYSADMIN
CUSTOM ADMIN LOGOS:
“site-generator” is the div id assigned to the Powered by WordPress link in Twentyten, the default theme. Many other themes also contain a powered by WordPress link in the footer but might not assign the same div id as Twentyten.
To find the div id or class assigned to the the link in the footer of your theme you can view source from your browser and scroll down to the bottom of the page. When you find the link to WordPress.org look for the
<div>
tag that the wraps the link and take note of the id or class assigned to it.Example from the Retromania Theme:
In this example the class “copy_support” is assigned to the powered by link so to remove it you would ass this to your css:
Since it is a class and not an id you use the
.
selector instead of the#
When doing it with CSS, make sure you are using firebug to see if the rule you are trying to apply is being applied to the element. It could be that there is a more specific rule, an equally specific but later defined rule, or even an inline rule overriding that your custom rule.
This plugin works pretty well http://wordpress.org/extend/plugins/white-label-cms/