How can I change the background colour of the slider in magazine theme?
Thanks
How can I change the background colour of the slider in magazine theme?
Thanks
@caramel: You will want to change the colours / colour in _inc/css/slideshow.css:
#slider {
width: 600px; /* important to be same as image width */
height: 220px; /* important to be same as image height */
position: relative; /* important */
overflow: hidden; /* important */
background-color: #000000;
}
#sliderContent {
width: 600px; /* important to be same as image width or wider */
position: absolute;
top: 0;
margin-left: 0;
background-color: #000000;
}
.sliderImage {
float: left;
position: relative;
display: none;
}
.sliderImage span {
position: absolute;
font-size: 18px;
padding: 0px;
width: 560px;
background-color: #222222;
filter: alpha(opacity=90);
-moz-opacity: 0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
color: #AAAAAA;
display: none;
padding: 10px 20px;
}
You must log in to post.