Site logo

Archived topic

Woocommerce Description Tabs - Move Under Short Description

8 replies · Started by John on May 16, 2019

Viewing posts 1–9 of 9

Hello

Hope you can help. Single Product page - No sidebars. The woo description tabs are all positioned on the left. (under Image) Client wants them under the Short description. (right hand side).

Is there a fix for this? I believe they were under the short description until recently? Is there a default positioning.
We have Custom Products Tab plugin installed.

Thank you.

John

Hello John,
I put with css in the customizer.
.woocommerce #content div.product .woocommerce-tabs, .woocommerce div.product .woocommerce-tabs, .woocommerce-page #content div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs {
clear: none !important;

}

Hi Maria, thank you. That worked. Tabs all move to the right under short description.

However the description text begins to justify to the left below the picture after about 5 lines. Is it possible to keep this to the right too?

It might be undesirable though if text is long?

Thank you

John

Hi there,

the default positioning for the Woo tabs is below the Gallery and Summary.
If you can provide me access to the Site without the CSS then i can take a look.

Hi David

Thank you. That would be v helpful. At present I have not added the additional CSS provided above.

John

WP Access:

Sorry, typo in the user name above. Corrected below.

WP Access:

So the tabs will sit below the summary to the side of the image?
If so you could try this CSS:

@media (min-width: 768px) {
    .woocommerce div.product {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .woocommerce #content div.product div.images {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 95% !important;
    }
    .woocommerce #content div.product .related {
        grid-column: 1 /3;
    }
}

Hi David

Brilliant. That works perfectly. All tabs appear on right hand side below the short description.

Thank you very much. Great job. John

Awesome - that was easy :) Glad to be of help

This archived topic is closed to new replies.