• Resolved alval82

    (@alval82)


    Hi! I am trying to put two slider in the short description of a product in woocommerce.
    Currently I get one under the other (according to the link) vertically, but I would like them to be horizontal, one next to another, would it be possible to be horizontal?
    I don’t know much about programming, I don’t know if it would be possible using CSS or maybe it’s a bit crazy.
    I appreciate a help
    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    You can achieve that by adding custom CSS.

    Not sure if you want this effect in all your woocommerce product or you want this just for this specific page.

    You can add this code if you want it specifically just on this page.

    body.postid-2474 .woocommerce-product-details__short-description {
        display: flex;
        justify-content: space-around;
        max-width: 700px;
        align-items: flex-start;
    }

    You can add this code if you want this effect on all your product pages

    .woocommerce-product-details__short-description {
        display: flex;
        justify-content: space-around;
        max-width: 700px;
        align-items: flex-start;
    }

    You can also check this article If you don’t know where to add the CSS code.
    https://www.metaslider.com/how-do-i-add-custom-css-to-my-theme/

    Thread Starter alval82

    (@alval82)

    Thank you very much !!!! You have helped me, exactly what I was looking for !!!
    Thank you!

    Hi,

    I’m happy that your issue has been fixed. Please don’t hesitate to post a new ticket if you need any help.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Two slider in short description’ is closed to new replies.