Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #643481

    Hi there,

    My client wishes to remove 4 of 5 footer blocks, but only in mobile. I have Firebuggged the footer area, and I can see that each element has a text id, my question is, what code do I need to use to take out the selected footer blocks in mobile view?

    Also, on the home page, they require the left hand column to be removed in mobile view too, however I cannot see any defining id’s, is this possible?

    Thanks, Silvio

    #643795

    Hey Silvio,

    You can try something like this in Quick CSS:

    @media only screen and (max-width: 767px) {
    #element1, #element2 {
    display:none; 
    }
    }

    Replace element1/element2 with the ID’s of the widgets you want to hide.

    Regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.