如何将产品div浮动到左侧而不是右侧[关闭]

I can't seem to align the product grid so that items appear from the left, instead of the right:

http://penarthpc.com/~dronebo2/wp/shop/tshirts/

Everything I do just messes up the template file, am I missing something here?

Add float:right to #shop-menu-left

#container #content #shop-content #shop-menu-left {
float: right;
width: 240px;
}
#container #content #shop-content #shop-right #product{float:left;}
#container{
  float:right;
  margin-left:...px;
}

just use

float: ((left or right or where you want));

in the CSS file

In your HTML

<div id="shop-content">

  <div id="shop-menus">
  </div>

  <div id="shop-items">
  </div>

</div>

and in your CSS:

#shop-content {
  float:both;
}

#shop-menus {
  float:right;
}

# shop-items{
 float:left;
}