I was looking through the CSS file used on
Comcast.net and found something interesting. Take a look at the header on Comcast.net, and take a look at the
H1 descendant declaration in the CSS file:
Code:
#header h1 {
position: absolute;
top: 11px;
left: 15px;
width: 123px;
height: 32px;
background: transparent url(/images/global/explore2.gif) no-repeat 0 0;
overflow: hidden;
}
Now they are setting a background image (
http://www.comcast.net/images/global/explore2.gif ). Take a look now at this background image they are using.
How does this one large image, laid out in the way it is, put together like it is on their homepage??? It doesn't make sense how they can turn this explore2.gif image into what you see on their homepage header. Perhaps one of you guru's can explain this to me

. Thanks for your help and guidance! Take care.