You want to change the website title and explanation into a logo. If you mean to use the banner graphic as a logo, this may be a solution for you.
Don’t edit anything in the wp-content/themes/twentyeleven
directory, it will only cause you grief later on.
Try this instead with a child theme.
Create a new empty directory in wp-content/themes
called twentyeleven-child
. Once that’s created copy this style.css
file into it.
/*
Theme Name: Twenty Eleven Child Theme
Author: Self-Help WordPress User
Template: twentyeleven
*/
@import url("../twentyeleven/style.css");
#branding hgroup {
display: none;
}
input#s {
background: #fafafa url(../twentyeleven/images/search.png) no-repeat 5px 6px;
}
You can download the style.css file from this Pastebin.com link.
This will cause the text above the banner image to not be displayed and the banner image will move up on the page.
The search box remains but has no background so the banner image shows through it. By adding the color #fafafa
it now has a solid background in the input search field.