Site logo

Archived topic

Single product page style

3 replies · Started by Denis on January 25, 2021

Viewing posts 1–4 of 4

Hello,

I would like to change the look - the order of appearance of elements on a single product page.

Details in a private message.

Thank you!

Hi Denis,

Try this CSS:

@media (max-width: 768px) {
    .product {
        display: flex;
        flex-direction: column;
    }
    p.has-text-color.has-text-align-right.has-vivid-red-color {
        order: -1;
    }
    .summary.entry-summary {
        order: 1;
        display: flex;
        flex-direction: column;
    }
    .woocommerce-product-rating {
        order: 1;
    }
    .custom-woo-wrap {
        order: 2;
        display: flex;
        flex-direction: column;
    }
    .woocommerce-tabs.wc-tabs-wrapper {
        order: -1;
    }
}

Let me know :)

Thank you very much for the quick and accurate solution! :-)

No problem Denis :)

This archived topic is closed to new replies.