Hi,
Same issue here, but I cannot make it work.
It says:
You can easily replace the “text logo” with your image. Open the file “styles.css” in the themes folder
* Find the text
Start EXAMPLE CODE for an image logo (line 224)
* Delete /* before
#logo, (line 225)
* Delete */ (line 230) after
.description (line 229)
* Find logo.png (line 228) and replace it with the name of your logo.
* Change the height and width to fit your logo (line 226)
#logo, #logo a { display: block; height: 19px; width: 87px; }
* Find the text
Start EXAMPLE CODE for a text logo (line 234)
* Add /* before
#branding (line 235)
* Add */ (line 239) after
#logo, .description { color: #868F98; float: left; margin: 17px 0 0 10px; } (line 238)
* Save your changes and upload the file style.css to your themes folder.
So I have in my css:
/* Start EXAMPLE CODE image logo */
logo, #logo a { display: block; height: 50px; width: 306px; }
logo { position: absolute; top: 28px; left: 27px; }
logo a { background: transparent url(img/logo.png) top left no-repeat; text-indent: -9999em; }
.description { color: #868F98; display: block; left: 124px; position: absolute; top: 44px; }
/* End EXAMPLE CODE image logo */
/* Start EXAMPLE CODE text logo */
/*
#branding { display: block; position: absolute; top: 30px; left: 28px; }
h1#logo { font-size: 30px; line-height: 1.2; margin: 0; }
#logo, .description { color: #868F98; float: left; margin: 17px 0 0 10px; }
*/
/* End EXAMPLE CODE text logo */
Heigh and width are correct and the name of the logo too (placed in /img of the theme folder). But it keeps putting the text logo instead.
???!
Thanks.