I'd like to change the header logo beside the site name and description to a different image. What would be the CSS code I'd need to add?
The blog I need help with is bodyconnections.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
I'd like to change the header logo beside the site name and description to a different image. What would be the CSS code I'd need to add?
The blog I need help with is bodyconnections.wordpress.com.
Here is an example you can start with:
div#header h1 img {
display: none;
}
div#header h1,
div#blog-description {
padding-left: 40px;
width: 710px;
}
#blog-title {
background: url('http://s.wordpress.org/about/images/logos/wordpress-logo-32-blue.png') left center no-repeat;
}
Change the url() value to the image you'd like to use and then adjust the padding-left and width values based on your new image size.
This topic has been closed to new replies.