Hi,
background images don't effect the dimensions of an element.
So you can have a 1500px x 1500px background image on a 100px 100px block and only show part of the background image.
It's best practice not to specific such strict heights on elements with text - so that it's flexible with more text or larger font-sizes.
But, those things aside all you need to do is float the blocks left and give them widths & heights:
Code:
#i02 {
background-image: url("/2011/tickets/regulars/100x100/adult.png");
background-repeat: no-repeat;
float: left;
height: 100px;
width: 100px;
}
#adult {
background-image: url("/2011/tickets/regulars/390x100/i02.png");
background-repeat: no-repeat;
float: left;
height: 100px;
width: 390px;
}
all the best,
Bookmarks