Here is what I want to do:
I want 3.jpg to be in the far background of the banner.
I want 2.jpg and 1.jpg to be in the foreground of the bannner.
I want 1.jpg to be to the left and 2.jpg to be to the right.
For anyone who has ever been wondering if it is even possible, I am glad to say yes.
Solution:
#A1000{
background-image:url(../banner/3.jpg);
background-repeat:repeat-x;
height:120px;
margin:0px;
padding:0px;
}
#A1001{
background-image:url(../banner/1.jpg);
background-repeat:no-repeat;
height:120px;
width:310px;
float:left;
margin:0px;}
#A1002{
background-image:url(../banner/2.jpg);
background-repeat:no-repeat;
height:120px;
width:300px;
float:right;
margin:0px;
padding:0px;
}



Reply With Quote

Bookmarks