Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #576761

    Hi,

    On the mobile version of my site on the about page, the text I have over the slider is cut off.
    Again this is only on the about page, and it’s fine on the desktop site.

    I appreciate your help.

    #576788

    Hey amanbir!

    Add this to your custom CSS.

    @media screen and (max-width: 767px) {
    .caption_bottom .slideshow_caption .slideshow_inner_caption { padding: 0px !important; }
    }

    Cheers!
    Elliott

    #576818

    Hey Elliot,

    Thanks for the quick response, I added the code as you suggested. More of the text is now visible but not all of it, what else can i do?

    #577231

    Hi!

    You have more content than the screen height we will need to scroll the content please use this modified version of the above code this will make the content scroll in small screens.

    
    @media screen and (max-width: 767px) {
    .caption_bottom .slideshow_caption .slideshow_inner_caption { 
    	padding: 0px !important; 
    	max-height: 70vh!important;
    	overflow: auto!important;
    
    }
    }
    
    

    Regards,
    Vinay

    #577354

    Thanks a lot, it works great!
    Love the quick support!

    #577386

    Hey!

    Glad we got it short out!
    Please do let us know if you need anything else related to our themes, we will be more than happy to help!

    Cheers!
    Basilis

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Full screen slider text cut off on mobile’ is closed to new replies.