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

    Indeed there is a way to achieve that. Could you please try to apply the following CSS code through the Simple Custom CSS plugin or child theme’s style.css?

    .slide-inner{
      text-align: left;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 15px;
      padding-right: 15px;
      top: auto;
      bottom: 0;
      -webkit-transform: unset;
      -moz-transform: unset;
      -ms-transform: unset;
      -o-transform: unset;
      transform: unset;  
    }
    
    .text-slider .maintitle:after{
      left: 0;
      margin-left: 0;
    }
    
    @media only screen and (min-width: 768px){
      .slide-inner{
        width: 750px;
      }  
    }
    
    @media only screen and (min-width: 992px){
      .slide-inner{
        width: 970px;
      }    
    }
    
    @media only screen and (min-width: 1200px){
      .slide-inner{
        width: 1170px;
      }    
    }
    

    Regards,
    Kharis

    Thread Starter deftdanny

    (@deftdanny)

    Hi Kharis,

    What if i want to keep it centered, the same way it is now but dropping it down a bit towards the middle?

    Best,

    Danny

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is there a way to move the slider text ?’ is closed to new replies.