为什么我的布局会中断?

时间:2016-12-12 19:27:09

标签: css magento

我一直在尝试使用Firebug来检查我页面上的元素,看看为什么产品图像在右边的配置框下面而不是靠近页面顶部而没有太多运气。任何人都可以看到问题是什么?

我问过主题开发者,他们说Cart2Quote的插件打破了Argeto布局。我确信我可以调整CSS并修复它但我找不到问题。有谁能看到这个问题?

http://dev.globalamericaninc.com/index.php/le-37i-g-3-5-embedded-mini-board-with-intel-skylake-6th-gen-core-h-series-processor.html

2 个答案:

答案 0 :(得分:1)

你必须有一个元素(或更多)在右侧有{clear:left}或{clear:both}。谷歌在CSS中有什么明确的作用

答案 1 :(得分:1)

更改CSS规则:

default.css line 742
.product-view .product-img-box {
  float: left;
  width: 445px;
}

default.css line 746
.product-view .product-shop, .col1-layout .product-view .product-shop {
  float: right;
  /*
  float: none;
  margin-left: 385px;
  width: auto;
  */
}