Hi,
Find this code in the playSlider.css(/css) file;
.playSlider ul.slide-content li img {
position: absolute;
top: 0;
left: 0;
margin-top: 0;
}
and replace with this code:
.playSlider ul.slide-content li img {
width: 100%;
position: absolute;
top: 0;
left: 0;
margin-top: 0;
}
Then find this code in the style.css file:
http://www.pictures-net.de/media="screen"
.playSlider ul.slide-content li {
position: absolute;
width: 940px;
height: 443px;
top: 0;
left: 0;
display: block;
margin: 0px 0px 0px 0px;
}
and replace with this code:
http://www.pictures-net.de/media="screen"
.playSlider ul.slide-content li {
overflow: hidden;
position: absolute;
width: 940px;
height: 443px;
top: 0;
left: 0;
display: block;
margin: 0px 0px 0px 0px;
}
Cheers,
George
Add Reply
You must log in to post.