-
AuthorPosts
-
February 4, 2015 at 12:08 am #198576
How can I edit the current product page layout so that instead of the current look, the video and images would be centered on the top while the product title and description would be centered below it.
Here is the link to the page in question.
February 4, 2015 at 8:12 am #198834Hi there,
Thanks for writing in!
Try adding following CSS under Custom > CSS in the Customizer:.single-product .product .images, .single-product .product .summary { width: 100%; text-align: center; } .single-product .product .summary { margin-top:25px; }
Hope it helps.
February 5, 2015 at 12:48 pm #199885That centers the text and other information on the right side of the page. However I’m looking to have the video and images centered on the top and the information centered directly below.
February 5, 2015 at 11:23 pm #200252Hi,
Sorry for the confusion.
You can add this under Custom > CSS in the Customizer.
.woocommerce div.product .images, .woocommerce-page div.product .images { width: 48%; clear: both; margin: 0 auto; } .woocommerce div.product .summary, .woocommerce-page div.product .summary { margin-top: 30px; float: none; clear: both; width: 100%; }
Hope that helps.
June 8, 2015 at 7:20 am #295730Hello staff,
I would like to center the description of my product but some how is showing to the right on the desktop version and it looks great on the mobile version. any advise? here is an example:
http://jaerosolutions.com/product/pn-101233-101/
Thank you,
Juan
June 8, 2015 at 7:36 am #295745Hello staff,
i forgot to add that im using woocommerce.
Thanks,
Juan
June 8, 2015 at 1:57 pm #296104Hi There,
try adding this code in your customizer’s custom CSS:
.woocommerce div.product .summary, .woocommerce-page div.product .summary{ width: 100%; }
Let us know how it goes.
Thanks.
June 8, 2015 at 7:13 pm #296373Thank you very much is working!
Juan
June 9, 2015 at 7:55 am #296800You’re welcome!
-
AuthorPosts