PDA

View Full Version : Is this required/needed? What does it do?


camiller
Feb-11-2009, 10:09 AM
Hi, I'm trying to clean up my CSS a little and I can't tell what this is doing. I removed it and everything seems to work okay. Is it required?


/* ----------------------------- */
/* --- HOMEPAGE/GALLERY LOGO --- */
/* ----------------------------- */
..smuglogo {
width: 443px !important;
height: 33px !important;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (enabled=true,
sizingMethod=image src='http://cynthiamiller.smugmug.com/photos/426953776_NqfGm-X3.png')
!important;}


.smuglogo[class] {
background-image: url('http://cynthiamiller.smugmug.com/photos/426953776_NqfGm-O.png')
!important;}

Thanks,

DrDavid
Feb-11-2009, 11:40 AM
Hi, I'm trying to clean up my CSS a little and I can't tell what this is doing. I removed it and everything seems to work okay. Is it required?


/* ----------------------------- */
/* --- HOMEPAGE/GALLERY LOGO --- */
/* ----------------------------- */
..smuglogo {
width: 443px !important;
height: 33px !important;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (enabled=true,
sizingMethod=image src='http://cynthiamiller.smugmug.com/photos/426953776_NqfGm-X3.png')
!important;}


.smuglogo[class] {
background-image: url('http://cynthiamiller.smugmug.com/photos/426953776_NqfGm-O.png')
!important;}

Thanks,
It's from the tutorial of how to do MRP sites.. But, since you've hidden the smugmug banner anyways, and you have your logo elsewhere in your CSS, you're fine.

In other words.. It works :P

David

camiller
Feb-11-2009, 12:06 PM
It's from the tutorial of how to do MRP sites.. But, since you've hidden the smugmug banner anyways, and you have your logo elsewhere in your CSS, you're fine.

In other words.. It works :P

David
Thank you,