Okay
  Public Ticket #2957868
Font Size in Blog Page (Desktop and Movil)
Closed

Comments

  • contactasas started the conversation

    Hi,

    How can i decrease the font size in a responsive view from the blog publications.

    If you open the next link in a smartphone https://contacta.co/contacta-es-reconocido-por-acnur/ you can see how big is the title. i need to reduce because look likes much better this way

  •  2,958
    Andrew replied

    Hi there,

    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 (max-width: 690px){
        body[data-ext-responsive=true].single-post #page-header-bg h1 {
            font-size: 33px;
            line-height: 41px;
        }
    }
    

    Regards,