quote:
Originally posted by Dempsey
You can do it using CSS, i do it on MPSounds.net.
If you have a table 3 cells wide and 3 cells high, then you have 8 CSS classes, similar to the following:
code:
.tableCorTL {
background-image: url(./images/corTL.gif);
background-repeat: no-repeat;
margin: 0px;
padding: 0px;
height: 10px;
width: 10px;
background-position: bottom;
}.tableEdgeT {
background-image: url(./images/edgeT.gif);
background-repeat: repeat-x;
margin: 0px;
padding: 0px;
height: 10px;
background-position: bottom;
vertical-align: bottom;
}.tableCorTR {
background-image: url(./images/corTR.gif);
background-repeat: no-repeat;
margin: 0px;
padding: 0px;
height: 10px;
width: 10px;
background-position: bottom;
}
Thats the three CSS classes I use for the three top cells, then in the top left cell for example, you would use code:
<td class="tableCorTL">
and then it would have the corner image in.
Is that what you mean? If you have any more questions, reply with them.
exactely what i mean
Thanks... thanks for all the help btw...