Code:
<div class="mgu-teaser-slide-left mgu-rot">
<div class="mgu-teaser-slider-bubble">blabla</div>
</div>
or
<div class="mgu-teaser-slide-left mgu-gelb">
<div class="mgu-teaser-slider-bubble">blabla</div>
</div>
Now I'm looking for a solution where I can tell the class mgu-taser-slider-bubble
to show a certain background-img if "mgu-teaser-slide-left
and mgu-rot
" or another if "mgu-teaser-slide-left
and mgu-gelb
". I need this combination because at the end it should show the background left or right aligned (there will be an other class "mgu-teaser-slide-right" at the end).
I've tried like that (which doesn't work!):
.mgu-teaser-slide-left .mgu-rot .mgu-teaser-slider-bubble { background: url('...'); }
thanks for help