Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #745598

    Hi,

    I created an extra widget to the right of my header and have some issues I was hoping you could help with. I need the widget to be on one line , right now it is on 2 (the phone on one line and the number on another) I also need this widget to disappear at 832px.

    #746097

    Hey mcraig77,

    Please try the following in Quick CSS under Enfold->General Styling:

    #header .widget .av_font_icon, #header .widget h4 {
        display: inline !important;
    }

    Best regards,
    Rikard

    #746101

    Hi,

    Try this to hide the widget on smaller screens:

    @media only screen and (max-width: 832px) {
      #header .widget {
        display:none;
      }
    }

    Best regards,
    Rikard

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