• Resolved lutsukomm

    (@lutsukomm)


    Is there any way to disable one menu “Frequently Asked Questions” on screen resolutions: 800X480 and 960X600 with CCS or how it would be good?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,
    Just add a class to that particular li.
    And add this code in your CSS file

    @media screen and (max-width: 960px) and (min-width: 800px){
        .li_class_name{
            display:none;
         }
    }

    Note: Replace li_class_name with the class name you have added for your li.
    Thank You!

    • This reply was modified 7 years, 4 months ago by divyawbcom.
    • This reply was modified 7 years, 4 months ago by divyawbcom.
    Thread Starter lutsukomm

    (@lutsukomm)

    @divyawbcom – I Love You!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disabling menus on small screen resolutions (CSS maybe)’ is closed to new replies.