• Hey is there a way to justify every slide to align to the bottom of the element? So in the case of my slider, all the text aligns next to eachother

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

Viewing 1 replies (of 1 total)
  • Plugin Author simonpedge

    (@simonpedge)

    No there is no option for this, but you can probably achieve this with some CSS.
    So if you have the following HTML for each slide for your images:

    <div class='sa_image_wrap'>
       <img src='IMAGE_NAME.jpg'/>
    </div>

    And then you add the following CSS:

    .sa_image_wrap {
       position:relative;
       min-height:320px;
    }
    .sa_image_wrap img {
       position:absolute !important;
       bottom:0px !important;
       left:0px !important;
    }

    This uses CSS absolute positioning (to absolutely position child elements within parent elements), and should work. You will have to play around with your ‘min-height’ setting.

Viewing 1 replies (of 1 total)

The topic ‘Justify Bottom’ is closed to new replies.