So I've done the research and I understand the margin: 0 auto trick but I have been unsuccessful at implementing it.
If you navigate to http://CIRRUSFitness.com and find the second slider on the home page you will see what I mean. If there are less than 4 items the products are off to the side.
I believe the code I want to work with is below
.catalog .items { width: 1004px; margin: 0 auto; }
.catalog .item-block-1 { width: 210px; margin: 0 25px -25px 0; }
I have tried the following
.catalog .items { width: 100%; margin: 0 auto; }
.catalog .item-block-1 { width: 210px; margin: 0 auto; }
I may need to center the .items within the .catalog? The only catalog code is
.catalog { padding: 0 0 52px 0; }
It may be easier for someone to inspect the site and see what I am doing wrong using their developer tools but I am more than willing to provide any missing information.
Thanks for the help guys.. I know this is an easy fix but I'm doing something fundamentally wrong which hopefully someone can point out to me.