Exclude meny selections in mobile version?

Discussion in 'Infoway WordPress Theme' started by matlars, Jan 28, 2014.

  1. matlars

    matlars Member

    Joined:
    Feb 19, 2012
    Messages:
    92
    Likes Received:
    0
    Hi
    Can you exclude certain menu selections when the website are scaled down in size mobile? Some sub-pages on the website must be displayed in full width of the inserted iframe not respsonive.
     
  2. 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
     
  3. matlars

    matlars Member

    Joined:
    Feb 19, 2012
    Messages:
    92
    Likes Received:
    0
    side is in production and is not online yet, but reason I want to hide certain "pages" in the mobile version is that I will have inserted pages with iframe that is not responsive eg http://webpack.sfd.se/wpAktuellaRantor/ because they are not good to have them in the mobile version.
     
  4. Gourav

    Gourav Support Staff

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

    To achieve this, You can use page id css trick. By catching particular page id you can remove it smart devices.
    For example:
    Code:
    @media only screen and (max-width: 480px){
    .page_item.page-item-17 a{
    display:none!important;
    }
    } 
    Add your page id inplace of ".page_item.page-item-17"


    This will solve your issue.

    Thanks & Regards
    Gourav Shrivastava
     

Share This Page