Okay
  Public Ticket #1370269
page title
Closed

Comments

  •  1
    Carrie started the conversation

    Hi, I would like to increase the font size, weight and style of the page titles (global) and also remove the separator. Please direct me to the correct section in the template to change this or assist with some css code.

    Thanks

    Carrie 

  •  2,010
    Ocean replied

    Please go to Appearance > Customize > Miscellaneous > Custom Code

    Add css code:

    #subheader h1{ font-size: your size; font-weight: your style; }

    #subheader .small-border-deco{ display: none; }

  •  1
    Carrie replied

    Hi,

    Thanks for the reply. I have added the code but it seems non-responsive for mobile (doesn't adjust for screen widths)?

    Regards

    Carrie 


  •  2,010
    Ocean replied

    You can add more code:

    @media (max-width: 991px) {
        #subheader h1{ font-size: your size; }
    }
    @media (max-width: 767px) {
        #subheader h1{ font-size: your size; }
    }
    @media (max-width: 479px) {
        #subheader h1{ font-size: your size; }
    }