• Resolved kostas146

    (@kostas146)


    How can I align my products to the bottom?
    Because I have various size images on my products so my solution was just to align them to the bottom, I can’t find the right code for this, can anyone help me?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter kostas146

    (@kostas146)

    .slick-track {
    display: flex !important;
    }
    .slick-track .slick-slide {
    display: flex !important;
    height: auto !important;
    align-items: flex-end !important;
    justify-content: center !important;
    }

    Plugin Author ShapedPlugin LLC

    (@shapedplugin)

    Hi @kostas146,

    Apologies for the late reply. We tested the CSS you shared on the local site and it works fine. To make the CSS specified for the product slider plugin you can use the below CSS:

    #wps-slider-section .slick-track{
         display: flex !important;
    }
    #wps-slider-section .slick-track .slick-slide {
        display: flex !important;
        height: auto !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }

    Hope the above CSS helps.

    Thank you so much.

    Have a good day!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to allign products to the bottom?’ is closed to new replies.