Here is some style code I have
.roundcorners, .roundcorners TD,
{
background-image: url('images/round_corner.gif');
color:white;
font-family: sans-serif;
font-weight:bold;
font-size: 8pt;
}'
What do I use to make it so the image does not repeat in the TD?






2020-Graphics posted this at 08:42 — 3rd February 2006.
He has: 83 posts
Joined: Feb 2005
Never mind I figured it out
.roundcorners, .roundcorners TD,{
background-image: url('images/round_corner.gif');
background-repeat: no-repeat;
color:white;
font-family: sans-serif;
font-weight:bold;
font-size: 8pt;
}
'