I want to have a different quote style for:
.windowbg
.windowbg2
I use the one below as a quote style but what i want is to be able to define a different image depending on the alternating window style (so that the upper left corner of the image matches that of the background). I did try with transparency but it showed the quote style background colour instead.
(You can see the quote at work here: http://www.translatum.gr/forum/index.php/topic,8179.0.html)
.windowbg
.windowbg2
I use the one below as a quote style but what i want is to be able to define a different image depending on the alternating window style (so that the upper left corner of the image matches that of the background). I did try with transparency but it showed the quote style background colour instead.
(You can see the quote at work here: http://www.translatum.gr/forum/index.php/topic,8179.0.html)
Code:
.quote {
display: block;
font-style: italic;
background: #9bb3d0 url( "http://www.translatum.gr/forum/Themes/babylon/images/quote_corner.png" ) 0 0 no-repeat;
color: #000;
padding: 10px;
padding-left: 50px;
margin: 15px 0;
}
Code:
/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg
{ color: #000000;
background-color: #E1E1E1;
}
.windowbg2
{
color: #000000;
background-color: #F0F0F0;
}



