• Resolved CB

    (@tng2013)


    Hi guys,

    Love the theme. I would like to hide the very top menu. I used the following CSS:

    #custom #top-navigation { display:none; }

    Which worked fine apart from it also hides both the top and the primary menu when viewing the site on a mobile device.

    Anyone know what CSS I should use to just hide the top menu without hiding my primary menu on a mobile device?

    Thanks,
    Calvin

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Richie KS

    (@rkcorp)

    try use this instead

    @media only screen and (min-width:768px) and (max-width:3000px) {
    #custom #top-navigation { display:none; }
    }

    Thread Starter CB

    (@tng2013)

    Worked perfectly Richie. As always, many thanks for your great support!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide top menu’ is closed to new replies.