Tagged: full width, Product page
Hi,
I do not use the sidebar in the product page and I would like to have the description tab use full width. Could you provide me with a quick css help ?
thanks a lot
Hi anniet!
Try this out, https://kriesi.at/support/topic/where-to-modify-the-look-of-woocommerce-shop-pages-in-enfold/#post-121997.
Best regards,
Elliott
Hi Elliott,
thanks for the answer. Unfortunately I’d prefer to stay out of rebuilding the template.
In abundance Yigit counseled me to use the following quick CSS.
@media only screen and (min-width: 1140px) {
#top div.product .woocommerce-tabs { width: 1000px; margin-left: -310px; padding-top: 125px; }}
Do you have a similar quick fix for it on Enfold ?
Hey!
Add this to your custom CSS.
.single-product-summary {
overflow: visible !important;
}
Regards,
Elliott
Thanks, it looks much better;
Is there a way to center the “add to cart button” ?
plus I would like to have the price on the right of the add to cart button, is it possible ?
Hi!
Try adding this to your custom CSS.
form.cart div.quantity, #top form.cart .button {
left: 50% !important;
position: relative;
transform: translateX(-50%);
}
Cheers!
Elliott
Hi Elliot,
Thanks a lot It functions perfectly.
Is it possible to reduce the space between the pictures and the add to cart button ?
+ to put the price next to the add to cart (just over or next to it on the right – what is the easiest )
Hi,
Please try the following as well:
.single-product .sidebar {
display:none !important;
}
Best regards,
Rikard
Thanks, it was effectively the padding due to the sidebar.