Okay
  Public Ticket #2764426
Responsiveness between large and small desktop
Closed

Comments

  •  3
    Lucie_Hanot16 started the conversation

    Hello,

    I have an issue with the responsiveness of my banner website, the H1 appears well on 13" screen but doesn't on the 18" the typo is to big. Do you know how I can solve this ? 

    Thanks a lot

  •  8,404
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (min-width: 1300px) {
        .nectar-highlighted-text.font_size_13vh h1, .nectar-highlighted-text.font_size_13vh h2, .nectar-highlighted-text.font_size_13vh h3, .nectar-highlighted-text.font_size_13vh h4 {
            font-size: 12vh !important;
            line-height: 1.1em !important;
        }
    }

    Thanks


    ThemeNectar Support Team