Title: Text Position
Last modified: June 4, 2019

---

# Text Position

 *  Resolved [andyt1980](https://wordpress.org/support/users/andyt1980/)
 * (@andyt1980)
 * [7 years ago](https://wordpress.org/support/topic/text-position-2/)
 * Hi,
    Great plugin, but is there any way to display text content **below** each
   slide instead of on top of it?.

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * (@simonpedge)
 * [7 years ago](https://wordpress.org/support/topic/text-position-2/#post-11606617)
 * Yes, possibly, but will require some fancy CSS:
 *     ```
       #SLIDER_ID,
       #SLIDER_ID .owl-stage-outer,
       #SLIDER_ID .owl-stage {
       	padding-bottom:100px !important;
       }
       #slider_image_demo .owl-item .sa_hover_container p {
       	position:absolute;
       	bottom: -100px;
       }
       ```
   
 * So replace “#SLIDER_ID” with the CSS ID of your slider.
    – The first CSS rule
   above creates enough visible space to contain text below the slider – The second
   CSS rule positions a paragraph (<p>) container absolutely below the slide container
 * So you will have to play around with the ‘px’ amounts…
 *  Thread Starter [andyt1980](https://wordpress.org/support/users/andyt1980/)
 * (@andyt1980)
 * [7 years ago](https://wordpress.org/support/topic/text-position-2/#post-11607355)
 * Thank you, this is working quite well apart from a few small issues:
 * – This also pulls the arrows down to below the images, I’d prefer them to stay
   where they are
 * – For some reason the paragraph is slightly pushed in from the left by about 
   20px, can’t see any CSS causing this. Tried left:0; but that pulls the text slightly
   wider than the image because I have a 3% margin between the slides.
 * Thanks.
 *  Thread Starter [andyt1980](https://wordpress.org/support/users/andyt1980/)
 * (@andyt1980)
 * [7 years ago](https://wordpress.org/support/topic/text-position-2/#post-11607640)
 * I managed to fix the heading/paragraph alignment with the following CSS:
 *     ```
       #home_carousel .owl-item .sa_hover_container p {
               position:absolute;
               bottom: -150px;
               left: 0;
           right: 0;
           margin-right: auto;
           margin-left: auto;
           padding: 0 20px;
       }
   
       #home_carousel .owl-item .sa_hover_container h3 {
             position:absolute;
             bottom: -60px;
             text-align:center;
             left: 0;
           right: 0;
           margin-right: auto;
           margin-left: auto;
   
       }
       ```
   
 * However, still need help keeping the arrows in place. Also, when I add a link
   to a whole slide it just adds a button on hover, I would really like the whole
   thumbnail to become a link.
 *  Plugin Author [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * (@simonpedge)
 * [7 years ago](https://wordpress.org/support/topic/text-position-2/#post-11610636)
 * Hi, regarding the arrow positioning…
    Assuming you added 100px padding previously
   to the bottom of your slider, the negative top margin for your arrow buttons 
   would be 100px + 20px:
 *     ```
       #home_carousel .owl-nav div,
       #home_carousel .owl-nav button {
       	top:50%;
       	margin-top:-120px !important;
       }
       ```
   
 * To make the whole slide a clickable link…
    Have a look at the FAQ page: [https://edgewebpages.com/faqs/](https://edgewebpages.com/faqs/)–
   Under the ‘Useful CSS Style for Slide Anything’ tab, under the heading ‘Instead
   of using slide link icons, make the entire slide clickable’
 *  Plugin Author [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * (@simonpedge)
 * [6 years, 12 months ago](https://wordpress.org/support/topic/text-position-2/#post-11640462)
 * Am marking this as resolved.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Text Position’ 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/)

 * 5 replies
 * 2 participants
 * Last reply from: [simonpedge](https://wordpress.org/support/users/simonpedge/)
 * Last activity: [6 years, 12 months ago](https://wordpress.org/support/topic/text-position-2/#post-11640462)
 * Status: resolved