[Support request] How to center product description text

Home Forums Support [Support request] How to center product description text

Home Forums Support How to center product description text

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #2334408
    xinghui

    I want to center the content text of my product details and extra information, how can I do it?
    here is my image:
    image

    #2334409
    Fernando
    Customer Support

    Hi Xinghui,

    May you provide the link to the site in question?

    You may use the Private Information field for this: https://docs.generatepress.com/?s=private+information

    #2334414
    xinghui

    I provide in private

    #2334419
    Fernando
    Customer Support

    From my end, that section is centered.

    To clarify, do you want the text and images to be centered?

    #2334433
    xinghui

    yes,I want the text and images to be centered

    #2334438
    Fernando
    Customer Support

    You can try adding this CSS:

    div.woocommerce-Tabs-panel {
        text-align: center;
    }
    #2334452
    xinghui

    Fernando,Thank you, the problem is solved. Finally, I want to add a horizontal separation line on the top of the product tab to separate the tab from the top. How can I do it?
    this is my image:https://i.postimg.cc/N0qxX02M/seppttttt.jpg

    #2334468
    Fernando
    Customer Support

    You can try this CSS:

    .woocommerce-tabs.wc-tabs-wrapper:before {
        content: "";
        width: 100%;
        height: 3px;
        background-color: #006600;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999999;
    }
    
    .woocommerce-tabs.wc-tabs-wrapper {
        padding-top: 30px;
        position:relative;
    }

    You may alter the values to your preference.

    #2334490
    xinghui

    Ok, thank you, I want to implement such a function, click this label to display the text content, click again to hide the content, I want to know if generatepress blocks can achieve this function
    E.g image:
    E.g url:https://www.lovehair.com/products/ultimate-bundle

    #2334497
    Fernando
    Customer Support

    Hi Xinghui,

    No, GenerateBlocks doesn’t have such a functionality. You will need a third party plugin or custom code to achieve that.

    #2334509
    xinghui

    Ok, are there any good plugins or custom code examples to recommend?

    #2334511
    Fernando
    Customer Support

    Here’s a thread you may refer to: https://generatepress.com/forums/topic/collapsible-accordion-menu/

    With regards to plugins, here’s an article I found: https://www.wpbeginner.com/showcase/best-wordpress-accordion-plugins/

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.