Slider text missing in mobile view

Discussion in 'Nutrition WordPress Theme' started by greggrsmith, Jul 23, 2016.

  1. greggrsmith

    greggrsmith Member

    Joined:
    May 5, 2015
    Messages:
    36
    Likes Received:
    0
    http://atonementmedicalspa.com/

    is there any way to have the slider text visible in the mobile view???? below slides??

    I tried adding
    @media only screen and (max-width: 480px){
    .entry_wrapper {
    width: 302px;
    height: auto;
    display: run-in;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .entry_wrapper {
    display: run-in;
    width: 480px;
    height: auto;
    }
    }
     
  2. priya

    priya Guest

    Hi,

    Greetings from InkThemes!

    Please use below code in Custom CSS field of your dashboard..
    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .slide .entry_wrapper {
        display: block;
    }
    .slides_container {
        height: 617px;
    }
    .index-content-wrapper {
        margin-top: 163px;
    }
    .slide .entry p {
        margin-top: 0px;
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 9px;
    }
    .slide .entry h1 {
        margin-top: -19px;
        font-size: 24px;
    }
    }
    @media only screen and (max-width: 480px){
    .entry_wrapper {
        display: block;
    }
    .slides_container {
        height: 359px;
    }
    .slide .entry h1 {
        font-size: 20px;
    }
    .slide .entry p {
        font-size: 12px;
        margin-right: 10px;
        margin-top: -12px;
        line-height: 13px;
        margin-bottom: 5px;
    }
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page