Remove Product Image And Align

I’m building a site with WooThemes, but the products have no images (they are not physical products).

I have been able to remove the image placeholder in functions.php but have not been able to align the product (which is actually a form with options).

I have discovered elsewhere that this should do the trick:

.single-product .product .summary { width: auto; }

I have added that line to /bb-theme-child/style.css

but it doesn’t change the alignment.

This is in a single product page created outside of BB, but even when I use BB to create a Single Product page, the alignment is still to the right instead of left and there is a large space where the image (if there was one), would have gone.

Can you guide me to the correct solution? :slight_smile:

Thanks!

Hey Ian,

Do you think you can share the URL of the page in question along with screenshots showing your issue so we can check and compare? Feel free to use the private reply option below if you don’t want to share the URL publicly. :slight_smile:

Ben

[Content Hidden]

Hi Ian,

Can you try the following CSS, please.

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
  width: auto;
}

Thanks,
Danny

Oh man, you guys are so good! :slight_smile:

Thank you so much! That worked, Danny :slight_smile: