Forum Moderators: open
/* scroller background - TABLE */
.TScrBack0 {
background: transparent;
}
/* style to be applyed to all items' bodies
- SPAN in Netscape 4.x, TD in rest
all local stylesheets of external files if any are to be ignored */
.TScrItemBody0 {
background: transparent;
font-family: Verdana;
font-size: 11px;
text-align: justify;
padding: 5px;
}
such a thing as 'background'There is; it is a shorthand.
background: <background-color> ¦¦ <background-image> ¦¦ <background-repeat> ¦¦ <background-attachment> ¦¦ <background-position>
So in theory, background:transparent should work, but background-color:transparent is more specific.
It would also help to have a snippet of the HTML, to see if there is a style conflict or something more basic, like a missing quotation mark, that could be causing the problem.