Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1466161

    Hi

    I am sorting out website below

    For some reason the social icons and contact button (in header widget) disappear on mobile.

    Are you able to assist?

    Kind ergards

    Duncan

    #1466175

    Hey dweddell,

    Thank you for the inquiry.

    The search and social icons are hidden in mobile view by default due to the lack of space in the header. If you want to display them again, you can try this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #header .social_bookmarks {
        display: block !important;
      }
    
      #top #header .av-main-nav>#menu-item-search {
        display: block !important;
      }
    }

    Best regards,
    Ismael

    #1466191

    Thanks Ismael

    Its really the header widget button i want to display on mobile…. is this possible using css?

    kind regards

    Duncan

    #1466199

    Hi,

    Please try this CSS as well:

    @media only screen and (max-width: 700px) {
      #header .avia-button.avia-size-x-large {
        display: block !important;
      }
    }

    Best regards,
    Rikard

    #1466211

    Many thanks :)

    #1466226

    Hi,

    Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

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