Responsive Layout Issue

Discussion in 'Nutrition WordPress Theme' started by kimkr, Aug 28, 2013.

  1. kimkr

    kimkr New Member

    Joined:
    Apr 3, 2013
    Messages:
    19
    Likes Received:
    0
    Hi -

    The part of my slider with the content/words that goes with the image does not display on the mobile version. I would like the full slider content to display on the mobile version. Can you help? Website is www.dentalstaffingnetwork.com
     
  2. Piyush

    Piyush Support Staff

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

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    @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;
    }
    }
    This will solve your issue.
     

Share This Page