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

    Hi guys,

    I’ve got two text widgets in my clients Enfold menu which is displayed in a side bar, one with just text, the other with a button box that links to a video. On mobile both widgets are not visible as the menu is replaced bij a hamburger menu. Can I show the widgets on mobile as well, but outside the menu centred at the top of the main page?

    Regards,
    Jan

    #719997

    Hi Jan,

    I think the easiest way to do that would be to add a Color Section element and only show it for mobile. Add a new Color Section then add a widget area with your widgets inside of it and give the section an ID, then you can hide it for all screens except mobile with CSS like this:

    @media only screen and (min-width: 768px) {
    #your-section-id {
      display:none !important;
    }
    }

    Best regards,
    Rikard

    #721441

    Thanks Rikard, that works perfectly!

    #721803

    Hi Jan,

    Great! Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

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