Hi,
It appears that the CSS in that document is a little outdated, but the process remains the same.
Instead of the suggested code snippet, try the one below instead, with your own image and height/width properties of course:
#header .logo .logoimg {
content: url("/images/DetroitPistonsOld.png");
display: block;
width: 130px;
height: 130px;
}
1 Like
Tony thanks for your help, Fixed it 
Tony, Custom logo is not working in IE and Firefox? i see the alt=“ibmlogo” getting executed.
But, It is working in chrome. anyways to overcome it?
Ahh okay. It appears IE and FF interpret the “content” property differently than Chrome.
Here’s another method that should work, albeit more hack-y. The “background-size” property is width first, height second.
#header .logo {
background: url("images/DetroitPistonsOld.png") no-repeat;
background-size: 130px 130px;
width: 130px;
height: 130px;
}
#header .logo .logoimg {
display: none;
}
2 Likes
Perfect, this css worked like a charm.
Thank you Tony.
1 Like