Title: Justify Bottom
Last modified: March 27, 2020

---

# Justify Bottom

 *  [acaldwell88](https://wordpress.org/support/users/acaldwell88/)
 * (@acaldwell88)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/justify-bottom/)
 * 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](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fjustify-bottom%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * (@simonpedge)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/justify-bottom/#post-12600134)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/slide-anything.svg)
 * [Slide Anything - Responsive Content / HTML Slider and Carousel](https://wordpress.org/plugins/slide-anything/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slide-anything/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slide-anything/)
 * [Active Topics](https://wordpress.org/support/plugin/slide-anything/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slide-anything/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slide-anything/reviews/)

## Tags

 * [alignment](https://wordpress.org/support/topic-tag/alignment/)

 * 1 reply
 * 2 participants
 * Last reply from: [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * Last activity: [6 years, 2 months ago](https://wordpress.org/support/topic/justify-bottom/#post-12600134)
 * Status: not resolved