Viewing 3 replies - 1 through 3 (of 3 total)
  • hannah

    (@hannahritner)

    Hey,
    You can use this css to remove the menu:

    @media (max-width: 992px) {
    .footernav ul {
      display: none;
    }
    }

    Which widget[s] are you referring to? Do you want the entire footer hidden in mobile?

    Hannah

    Thread Starter Dddt

    (@dddt)

    hey,
    would prefer every widget to be removed for phones.

    thanks

    hannah

    (@hannahritner)

    You can disable the entire footer with this css:

    @media (max-width: 992px) {
    #containerfooter {
      display: none;
    }
    }

    Hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘disable footer menu and or widgets for phones’ is closed to new replies.