The slider uses mostly gradients, and gradients have been an issue here. The issue is that the CSS Tidy program our custom CSS is run through is not allowing multiple background declarations in rules, so that means we cannot effectively change gradients. We can change it for a small fraction of browsers, but others will not do the gradient since their browser specific code ends up getting stripped out of our custom CSS.
Here is the code for the right size greyish area on the slider. The "filter" declaration is what is required for Internet Explorer which always has to be difficult.
#sidebar-feature {
background:#111;
background:-webkit-linear-gradient(top, #494949, #222222);
background:-moz-linear-gradient(top, #494949, #222222);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#494949', endColorstr='#222222');
}
Same thing with the grey title bar above the image on the left.
.slideshow-items .entry-title {
background:-webkit-linear-gradient(top, #404040, #595959, #555555);
background:-moz-linear-gradient(top, #404040, #595959, #555555);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#595959', endColorstr='#555555');
}
The control bar at the bottom is a repeating image. The image used is an image "sprite" and has multiple images in each and then which image is ultimately show on the side depends on the positioning values in the background declaration.
http://s1.wp.com/wp-content/themes/pub/nuntius/images/slider-controls.png
.slideshow-controls {
background: url("images/slider-controls.png") repeat-x scroll 0 0 transparent;
}
.slideshow-controls .slideshow-pager a {
background: url("images/slider-controls.png") no-repeat scroll right -61px transparent;
}
Since it is highly unlikely the multiple gradient background declataions will survive a "save stylesheet" then you are likely going to be back to just using a standard solid color
#sidebar-feature {
background: #111111;
}
.slideshow-items .entry-title {
background: #404040;
}
And that is the extent of my energy for a while. This cold/whateveritis just won't go away.