Before you ask please READ THIS

Disable the icon showing in the middle/bottom of the page

I disabled the footer widget area, but the icon is still showing in the middle/bottom of the page. It is confusing showing it when there is nothing happening when clicking. How can I get rid of it?

image

Thanks

Ben

http://benjaminkanarek.com
3.jpg
1595 x 145 - 131K

Comments

  • PS : I would like to keep it for the mobile / iPad version as it is useful to get you navigation bar back. I would like to disable it for the desktop version only. Is it possible?
  • AirAir
    Posts: 10,970
    Hello there:-)

    It is useful when you have footer widgets, or footer message activated.

    Sorry it is not possible. Only detection I can offer you is based on resolution. So fore example hide this icon when there is more space then 1024px, and show when it is below. It is exactly when it should show up on iPad and smaller devices. Interested?

    Use such custom CSS:

    @media only screen and (min-width: 1025px) {
    #f-switch{
    display: none;
    }
    }
    @media only screen and (max-width: 1024px) {
    #f-switch{
    display: block;
    }
    }
    With kind regards.
  • OK Thanks
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!