How can I change the color of the slider? It is currently black, but it has to become 8BCD33.
I cannot find this bit in the css files.
Grab Firebug (developer plugin, quite handy) or something similar and inspect the background of the slider a bit closer. Then you’ll see:
#slider {
background: none repeat scroll 0 0 #151515;
box-shadow: 0 0 20px #999999;
height: 410px;
margin-bottom: 20px;
padding: 30px 0;
position: relative;
}
Change as you like. Voilà