Aren't .png images less compatible in general?
That's a really large image. I want to shave it down to something tolerable in size and insert two images on the leftside and right side. Then for the the three side window graphics, I would have to reset the opacity to 1 and 100. This is my guess:
Code:
#leftside{
background:url("ivyleft.jpg") no-repeat scroll 50% 300px transparent;
float:left;
margin:405px 0 0 0;
width:auto;
/*for IE*/
filter:alpha(opacity=30);
/*standard CSS3*/
opacity:0.3;
}
#leftsidestart{
float:left;
background:url("sidewindowstart.gif") no-repeat scroll 50% 0 transparent;
width:27px;
height:250px;
margin:0;
/*for IE*/
filter:alpha(opacity=100);
/*standard CSS3*/
opacity:1;
}
#leftsidebody{
margin:0 auto;
float:left;
background:url("sidewindowbody.gif") repeat-x scroll 50% 0 transparent;
width:240px;
height:250px;
/*for IE*/
filter:alpha(opacity=100);
/*standard CSS3*/
opacity:1;
}
#leftsideend{
float:left;
background:url("sidewindowend.gif") no-repeat scroll 50% 0 transparent;
width:16px;
height:250px;
margin:0;
/*for IE*/
filter:alpha(opacity=100);
/*standard CSS3*/
opacity:1;
}
Let me know what you think about this idea.
Bookmarks