Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #326386
    francesco
    Participant

    Catch Themes: increasing page title font size

    Good morning, I use Catch Themes.
    I need to increase the font size of the page title. What should I do?
    Thank you
    Regards

    #326389
    Sakin
    Keymaster

    @francesco: Can you post in your site URL and then I can check it?

    #326395
    francesco
    Participant

    Thank you!
    The theme is Kids Camp
    the website http://www.okmusic.it.
    Before, via a plugin, I used to hide the title and rewrite it in the body of the page.
    Now I had to deactivate the plugin that hid the title and I need a title with a slightly larger font.
    Look at the title, for example, these pages:
    https://www.okmusic.it/it/1600-attivita-musicali-per-la-scuola-primaria-secondaria-registrati/
    https://www.okmusic.it/it/1600-attivita-musicali-per-la-scuola-primaria-secondaria-login/

    Thank you very much

    #326402
    Sakin
    Keymaster

    @francesco: There is Custom CSS in the “Appearance => Customize => Additional CSS” box, where you have given important font size for the Heading 1 tag and Heading 2 tag which is causing issues.

    Please check for the following CSS:

    h1 {
     color: #7A1090 !important;
     font-size: 30px !important;
    }
    h2 {
     color: #7A1090 !important;
     font-size: 21px !important;
    }

    So, if you remove that font size from those CSS then you will get the original font size then you can adjust accordingly with the following CSS:

    @media screen and (min-width: 64em) {
      .singular-content-wrap .entry-title {
        font-size: 56px;
      }
    }
    #326403
    francesco
    Participant

    Fantastic
    Thank you very much

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Catch Themes: increasing page title font size’ is closed to new replies.