Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1406058
    Itwebdevelopment
    Participant

    Hi, I’d like to disable my footer widget with my logo on mobile devices. Is this possible?

    Here is the link:

    dzdrones.com

    Thanks!!

    #1406139
    Thai
    Moderator

    Hi There,

    Please add the following CSS under Customizer > Custom > Global CSS:

    @media (max-width: 767px){
       .x-colophon.top > div > .x-column:nth-child(1) {
            display: none;
        }
    }

    Hope it helps 🙂

    #1407154
    Itwebdevelopment
    Participant

    Thanks so much for the quick response. Is there any way to make the other widgets not visible as well on mobile?

    Thanks again!!

    #1407414
    Nico
    Moderator

    Hi There,

    You could use the similar code above however add the class that you want to remove for example.

    
    @media (max-width: 767px){
       .widgetclasshere {
            display: none;
        }
    }

    Hope it helps.

    Let us know how it goes.

    Thanks.

    #1407525
    Itwebdevelopment
    Participant

    Could you tell me all the widget classes?

    #1407526
    Itwebdevelopment
    Participant

    Actually could you just give me the code to remove all three widgets on the website?

    #1407527
    Itwebdevelopment
    Participant

    For mobile

    #1407718
    Friech
    Moderator

    Hi There,

    Your site is not accessible at the moment. You can hide the entire Footer Widget Areas on mobile with the custom CSS below.

    @media (max-width:  480px) {
    	.x-colophon.top {
    		display: none !important;
    	}
    }

    Cheers!

  • <script> jQuery(function($){ $("#no-reply-1406058 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>