I've been trying to adjust the width of the Nivo slider on my blog. Right now, it's taking up the entire width of the page wrapper and I want to add some space on the left and right sides so that it's centered and lines up with the navigation bar without extending all the way out. Once I can resize the slider, I'll also resize the images to fit properly. I've attempted changing the width in the CSS section below. The width changes, but then the slider and image are aligned to the far left. I've also tried adding margin tags, but they don't seem to have any impact. I'm at a loss for what to do next.
Check out My Blog Here
#slider-wrapper-full { width:1000x;
height:400px;
overflow:hidden;
padding-top:10px; }
#slider-wrapper-full #slider { width:1000px;
height:400px;
background:url(images/loading.gif) no-repeat 50% 50%; }
I made this change: .nivoSlider { position:absolute; overflow:hidden; }
to this: .nivoSlider { width: 900px; overflow:hidden; }