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