• Resolved Crimmy

    (@crimmy)


    Hey guys. I’ve done a little bit of research and found the CSS for changing the page header size, but I don’t know the code to change the size of the font for the post header and post body.

    eg

    h1.entry-title{
    
    font-size : 1.5em;
    }

    ^This works, but I don’t know what I need to change to make it affect h2, h3 and maybe h4-h6

    It’d also be really appreciated if someone could tell me what code I need to put in to alter fonts for the h variables.

Viewing 1 replies (of 1 total)
  • The best way to do it is just

    h1 {
    font-size : 1.5em;
    }
    
    h2 {
    font-size : 1.5em;
    }
    
    [...]

    or

    h1, h2, h3, [...] {
    font-size : 1.5em;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change post font size’ is closed to new replies.