Reply To: Header logo Enigmatic

#1347
livemesh
Keymaster

Strange that I did not notice or heard this before. It is probably because your logo image is little heftier than usual, taking time to load while the default one loads early. The problem is caused by the entry in css/skins/skin.php file –

#site-title a {
    background: url("{$skin}/logo.png") no-repeat scroll 0 0 transparent;
}

#sticky-site-title a {
    background: url("{$skin}/logo.png") no-repeat scroll 0 0 transparent;
}

Instead of trying to modify this file, can you make the following change in Custom CSS tab in theme options (change the url to point to your own ) and see if the error goes away? –

#site-title a {
    background: url("http://yourdomain.com/your-logo.png") no-repeat scroll 0 0 transparent;
}

#sticky-site-title a {
    background: url("http://yourdomain.com/your-sticky-logo.png") no-repeat scroll 0 0 transparent;
}

Thanks.