folgendes Problem ist bei mir augetreten:
Code: Alles auswählen
<div id="left-box">
<div id="slideshow" class="pics">
<img src="images/beach1.jpg" width="200" height="200" />
<img src="images/beach2.jpg" width="200" height="200" />
<img src="images/beach3.jpg" width="200" height="200" />
</div>
</div>
Code: Alles auswählen
.pics img{
filter:alpha(opacity=100);
-moz-opacity:1.0;
opacity:1.0;
}
#left-box {
clear:both;
width: 39%;
height: 350px;
background: #636363 url(../images/box-background.gif) repeat-x;
filter:alpha(opacity=30);
-moz-opacity:0.3;
opacity:0.3;
float: left;
}
Ich hab schon alles versucht, aber erfolglos
