MixedBeans
MixedBeans

Reputation: 159

Why is my layout breaking?

I've been trying to use Firebug to inspect the elements on my page to see why the pruduct image is dropping down below the configuration box on the right instead of being near the top of the page without much luck. Can anyone see what the issue is?

I've asked the theme developer and they said that Cart2Quote plun breaks the Argeto layout. I'm sure I can tweak the CSS and fix this but I can't find the issue. Can anyone see the problem?

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

Upvotes: 1

Views: 64

Answers (2)

Suman Singh
Suman Singh

Reputation: 1377

change below CSS rules:

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;
  */
}

Upvotes: 1

Albi Patozi
Albi Patozi

Reputation: 1468

you must have an element (or more) that has {clear : left} or {clear : both} in the right side. Google what clear does in CSS

Upvotes: 1

Related Questions