Posted - 08/19/2026 : 17:27:32
Hi,
I checked your live product page and found that both issues are coming from the updated css/ectcart.css file. You should be able to correct them by adding a few rules to the very bottom of your existing css/styles.css file.
Try adding:
/* Add spacing between the product-detail sections */ div.proddetail div.detailprice { margin: 4px 0 12px; }
div.proddetail div.detailaddtocart { margin: 4px 0 12px; }
div.proddetail div.previousnext { margin: 4px 0 16px; }
/* Add space before Recently Viewed */ #mainbodyspan.proddetail + div.recentview { margin-top: 16px; }
/* Keep the cart Checkout image at its natural size */ div.cartcheckoutbuttons input[type="image"].checkoutbutton { width: auto; max-width: 100%; height: auto; }
The first rules add space between the price, Add to Cart button, Previous/Next links, and Recently Viewed section.
The last rule corrects the enlarged Checkout image. The updated ECT stylesheet currently gives that image a width of 100%, which stretches it beyond its original size.
Add these rules to css/styles.css, not css/ectcart.css, so they won’t be lost during a future ECT update. You do not need to change your DWT template for either fix.
If the spacing is a little too large or small, you can adjust the 12px and 16px values.
Maybe this will help. It's just my opinion and I'm not an expert in this. Just learning as I go. Vince may/probably have a better solution but this is worth a try.
Patrick
Edited by - midvalleydrifter001 on 08/19/2026 17:28:22
|