Mobile version - limit what appears?

Discussion in 'GeoCraft WordPress Theme' started by merryandrew, Feb 18, 2015.

  1. merryandrew

    merryandrew Guest

    Joined:
    Mar 23, 2014
    Messages:
    47
    Likes Received:
    0
    Can I limit what appears on the mobile (phone) version of my Geocraft theme? I'd like to just show the site logo, intro and search box, and maybe the footer widgets but not much else. It looks fine on PDAs but overlong on mobile phones and is data-heavy.

    Thanks

    www.pubs.com
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey merryandrew!

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

    Code:
    @media only screen and (max-width: 768px){
    .featured_content {
    display: none !important;
    }
    .widget:last-child {
    display: none !important;
    }
    .footer_wrapper {
    margin-top: -200px;
    }
    }
    Thanks,
    Praveen
     

Share This Page