It’s, as mentioned, in the css file. To be exact, it’s in style.css . 🙂
On a further notice, if you leave the picture slider as is (at 920px width), make sure you leave about 10 to 20px room to each side (which is why I made the slider bar background 940px).
Otherwise the borders of the slider itself will overlap.
Regards,
Tom
Hehe, just found the solution to my problem.
Found the ‘slider’-part in the css file and added some lines of code there. Now it reads (added lines are bold):
#slider {
position:relative;
width:940px; <- added
left:50%; <- added
margin-left:-470px; <- added
height:410px;
padding:30px 0 30px 0;
margin-bottom:20px;
background:#000000;
-moz-box-shadow:0px 0px 20px #999;
-webkit-box-shadow:0px 0px 20px #999;
box-shadow:0 0 20px #666666;
}