Slider Images distorted.

Discussion in 'Infoway WordPress Theme' started by newlightdp, Feb 16, 2013.

  1. newlightdp

    newlightdp New Member

    Joined:
    Feb 15, 2013
    Messages:
    10
    Likes Received:
    0
    Why are my slider images being distorted when viewed on mobile devices?
    It can be seen at granitefallswa.newlightdp.com
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px)
    #featured {
    height: 260px;}
     
    @media only screen and (max-width: 480px)
    #featured {
    height: 172px;}
     
  3. newlightdp

    newlightdp New Member

    Joined:
    Feb 15, 2013
    Messages:
    10
    Likes Received:
    0
    Okay, I pasted it into the Custom CSS. But when I look at it on my mobile device,
    it still shows that it's stretched/distorted.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    #featured {
    height: 260px;
    }
    }
     
    @media only screen and (max-width: 480px){
    #featured {
    height: 172px;
    }
    }

    This will solve your issue.
     

Share This Page