Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #420349

    Hi on our client site http://www.woldskitchensandinteriors.com/us/app/

    We want the above link to be removed for desktop users. If a mobile user goes to that page it loads up the smartphone app but on desktop nothing happens so it is a redudant page for desktop

    Any idea how to implement that?

    #420393

    Hi codecreative!

    Please add following code to Quick CSS

    @media only screen and (min-width: 990px) {
    .phone-info { display: none !important; }}

    Best regards,
    Yigit

    #420575

    not sure you understand the question

    on the nav bar there is a page called our app that is shown if you hover over about us in the drop down

    i want this turned off and not visible for all devices bigger than smart phone

    is this possible?

    #420972

    Hi!

    Please try the following in Quick CSS:

    @media only screen and (min-width: 767px) {
    #menu-item-272{
    display:none !important;
    }
    }

    Regards,
    Rikard

    #421060

    Perfect works a charm thank you Rikard :)

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Removing page from menu for desktop’ is closed to new replies.