Mobile slider height

Discussion in 'Woodpecker WordPress Business Theme' started by gwindylyn, Jul 19, 2014.

Thread Status:
Not open for further replies.
  1. gwindylyn

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    Is there a way to adjust the height on the mobile slider area? I just want to increase the height a bit and do minor adjusting.

    Thanks!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    @media screen and (max-width: 767px){
    .nivoSlider img {
    height: 250px;
    }
    } 
    You can adjust the value of "height" as per your requirement.
    This will fulfill your requirement.
     
  3. gwindylyn

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    I figured out how to adjust the background image to increase the height of the entire area not just the slider images by your code above. Thanks! But what I am really trying to accomplish is to show the slider description and button on the mobile version. I thought increasing the area size would accomplish this but I was wrong.

    Thanks!
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media (max-width: 767px){
    .nivo-caption {
    visibility: visible;
    }
    .slide-h1 {
    font-size: 14px;
    line-height: 0px;
    font-weight: normal;
    }
    p.slide-para {
    font-size:13px;
    padding-bottom: 15px;
    line-height: 0px;
    }
    .nivo-caption a.slide-button{
    font-size:13px;
    padding:5px 10px;
    }
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  5. gwindylyn

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    So the area is still cutting everything off. I have attached a screenshot.

    mobile.jpg
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.


    Thanks & Regards
    Gourav Shrivastava
     
  7. gwindylyn

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    dev.thevirtualdivorce.com
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media (max-width: 767px){
    .player .title header h2 {
    font-size: 1em!important;
    }
    .player .title header h1 {
    font-size: 1em!important;
    }
    } 
    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  9. gwindylyn

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    Sorry but that didn't work. I am still having the same issue as before where it cuts off.
     
  10. gwindylyn

    gwindylyn Member

    Joined:
    Mar 16, 2013
    Messages:
    47
    Likes Received:
    1
    I figured it out! Thanks anyway.
     
Thread Status:
Not open for further replies.

Share This Page