Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #442705

    Used the following directions here: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/ to place a widget in the header section. Used a text widget in the header position and inserted some content. Problem is: I would like to have the content display: none in mobile form. As of now the content shrinks and overlays with the logo when mobile. Can anyone assist with this?

    #443171

    Hi jr3creative!

    Add this to your custom CSS.

    @media screen and (max-width: 767px) { #header_main .widget { display: none !important; } }
    

    Regards,
    Elliott

    #445110

    Thanks Elliott

    That did work.

    Different scenario: I want the text widget visible in the header, and positioned to the right of the logo on mobile. Is that possible?

    As of now the content shrinks and overlays with the logo when mobile.

    #445622

    Hey!

    It looks like Elliotts code should be working, but you can try the following instead:

    @media only screen and (max-width: 767px) {
    #text-9 {
    display:none !important;
    }
    }

    Please make sure to delete browser and plugin cache to see the changes.

    Regards,
    Rikard

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