• Resolved theticus

    (@theticus)


    Hi Thomas,
    I have wp-forge with wp-starter as child theme setup.

    I am trying to change the font size of page/post title. (i.e. when you first create a new page/post, you enter the title. That’s the one that I’m talking about)

    Now I have looked through the WP-Forge css file and noticed the class [entry-header] and [entry-title] are associated with the title.

    All I want is reduce the font size a bit smaller.
    I tried changing some values in WP-Forge’s CSS file but nothing changes. Is that the right way to test it out or do i have to do all changes in child CSS? If so, what code do I have to put in??

    Please help.
    Thanks in advance..

    T

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author ThemeAWESOME

    (@tsquez)

    Hi again,

    If you are using a child theme you add the css to the child theme style sheet, never to the parent style sheet. The child style sheet is used to overwrite the parent style sheet,

    In order to adjust the size of the title you add this to the child css:

    h1.entry-title {
     	font-size: (enter the size you want);
     }

    Hope this helps.

    P.S. forgot to mention, after you find the code you want, you copy that code from the parent style sheet and paste it into the child style sheet and make the change you want.

    Thread Starter theticus

    (@theticus)

    Thanks Thomas,

    First I had trouble seeing the changes. I had to restart the browser every time i made changes to see the correct size i want even I refreshed the screen load (F5). (assumed there must be cache in theme/WP setup??)

    Now its working. For those of you who are in the same boat, here is my font size that a little smaller than default size.

    h1.entry-title {
    font-size: 2.0rem;
    }

    Thanks again Thomas.. you are a champ! ****** six stars for you. Got my reply in less than 6hrs.. beat that! ??

    Theme Author ThemeAWESOME

    (@tsquez)

    Awesome! Glad it worked out for you amigo.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘page post Title Font Size’ is closed to new replies.