That's what I thought it was at first, but wasn't sure what you meant by 'stacking'. Technically that means all of the images would be in one spot. What you have is line breaks between the images, due to this style (highlighted):
Code:
@import url("untitled.css");
td img {display: block;}body {
background-image: url(images/index_r1_c11.jpg);
background-repeat: repeat-x;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
And some other(s) I cannot find at the moment. Add this style to the end of your either of your stylesheets:
Code:
#temp img, #test2 img, #test3 img {
display: inline;
}
Bookmarks