0

我似乎无法对齐产品网格,以便项目从左侧而不是右侧出现:

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

我所做的一切都只是弄乱了模板文件,我在这里遗漏了什么吗?

4

5 回答 5

1

添加float:right#shop-menu-left

#container #content #shop-content #shop-menu-left {
float: right;
width: 240px;
}
于 2013-07-03T07:12:48.327 回答
1
#container #content #shop-content #shop-right #product{float:left;}
于 2013-07-03T07:13:39.317 回答
1
#container{
  float:right;
  margin-left:...px;
}
于 2013-07-03T07:17:37.800 回答
0

在您的 HTML 中

<div id="shop-content">

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

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

</div>

在你的 CSS 中:

#shop-content {
  float:both;
}

#shop-menus {
  float:right;
}

# shop-items{
 float:left;
}
于 2013-07-03T07:29:09.657 回答
-1

只需使用

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

在 CSS 文件中

于 2013-07-03T07:22:02.297 回答