Remove Slider from mobile View Only

Discussion in 'Infoway WordPress Theme' started by mocklin, Jun 22, 2013.

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

    mocklin New Member

    Joined:
    May 19, 2013
    Messages:
    8
    Likes Received:
    0
    I'm using infoway pro. Can you tell me how to remove the slider from the mobile view only. It shows with a ton of white space under it and I think it would look nicer to just not have it there on the mobile view. www.mocklintech.com/parking

    Thanks for any help you can provide with this!





     
  2. 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

    To remove white space below slider in mobile view.
    Code:
    @media only screen and (max-width: 480px){
    #featured {
    height: auto;
    }}

    To remove slider in mobile view.

    Code:
    @media only screen and (max-width: 480px){
    #featured {
    display: none;
    }}
     
  3. mocklin

    mocklin New Member

    Joined:
    May 19, 2013
    Messages:
    8
    Likes Received:
    0
    Thanks, worked perfectly:)
     
Thread Status:
Not open for further replies.

Share This Page