Eliminate WordPress Logo
-
I am using a child theme based on Twenty Ten. I want to eliminate the WP logo. I already edited the text “powered by” (by changing the footer.php in the child theme) but now want to also eliminate the WP Logo from that line. I do not see where or how to eliminate just the logo in the footer.php file. I tried, in the child theme CSS file, to add a line of CSS:
#site-generator a {
background-image:none;
}
but that is not working.Can you tell me which file (footer.php or CSS) where I can make the change and what I coding I should use?
my site is: http://www.saravaron.net
-
This works in Firebug:
#site-generator a { background: none; }HTH
PAE
You’re right, when I change it in the Twenty ten theme style sheet, the logo goes away. But when I add coding to the Child theme style sheet, nothing happens. I’m not sure why…any ideas? I can change the padding, the text size, etc on #site-generator a in the child theme style sheet but I cannot specify background: none;
You seem to have two entries for
#site-generator ain your child theme style sheet: at lines 72 and 76. Neither contains this rule, according to firebug.HTH
PAE
clean up your style.css;
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.saravaron.net%2F&profile=css21&usermedium=all&warning=1&vextwarning=&lang=enrelevant part:
URI : http://www.saravaron.net/wp-content/themes/saras-childtheme/style.css
69 * Parse Error *—next three changes are to the WP “powered by” which I have changed to designed by—-*/ /*—to eliminate WP Logo———-*/ #site-generator a { background-image:none; }
72 #site-generator a Value Error : color ccc is not a color value : ccc
81 #site-generator a Value Error : padding only 0 can be a length. You must put a unit after your number : 10for instance cange here:
*---next three changes are to the WP "powered by" which I have changed to designed by----*/needs to have a
/at the start of the line…and then follow the suggestion made by @peredur
Thank you both for your input!!! Turns out that the parse error in my code was causing the Background-image: none; not to be read. Once I fixed the validation errors, then I was able to eliminate the WP logo.
The topic ‘Eliminate WordPress Logo’ is closed to new replies.