I am facing an issue where I am attempting to center a group of fluid thumbnails, but they are always aligning left instead of center. Can someone help me with this problem?
To better illustrate the problem, here's the JSFiddle link: http://jsfiddle.net/4040newb/bVa2Z/3/
If you check the output window and enlarge it, you will notice that the thumbnails should be displayed side by side, but they are not centered.
<div class="container-fluid">
<div class="row-fluid">
<ul class="thumbnails">
<li>
<a href="photos for nothing.jpg" rel="prettyPhoto[gallery1]" title="nothing">
<img class="thumbnail" src="blank photos/blankthumb.jpg" alt="nothing">
</a>
</li>
<!-- More list items -->
</ul>
</div>
</div>