• Resolved mattdalli71288

    (@mattdalli71288)


    Hi guys,

    I’ve installed the plugin which is quite impressive but I would like to know if it ‘s possible that the title of the posts get enlarged as well. Currently, when I click on the ‘Enlarge Text’ button, the paragraph text is enlarged but the post title gets scaled down. Is there a way to remove this? As I require that the title to be enlarged too.

    Thanks and Regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    Most likely, this is because the font size for your titles are specified in a very different way from your paragraph text. There’s no way that I can know in advance about how your fonts are specified. You’ll probably want to pass custom styles that will customize how everything operates. With most themes, you can use the customizer’s built-in CSS editor and add custom styles there. An example would be something like

    .fontsize h1 {
        font-size: 2em;
    }

    (The size specified may not be usable for you; I don’t know, obviously.)

    Thread Starter mattdalli71288

    (@mattdalli71288)

    Thanks a lot Joe for the reply. I managed to add this to the built-in CSS editor with a minor difference:

    .fontsize h3{ 
    font-size: 2em !important;
    }

    Just to clarify for others, the heading which I wanted to change was H3 and it is important to add !important as it might not take affect if you have other styles applied to the same heading.

    Appreciate your time Joe and great plugin ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post Title Not Changing (Enlarge Font)’ is closed to new replies.