• Hi, what’s the cleanest way to boost the Twenty Twelve default font size for page content? Just want it slightly larger for readability.
    I don’t think I really want to change the rem base for the whole site, right?

    Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Anonymous User 5826054

    (@anonymized-5826054)

    If you don’t want to change the whole site (including the width), change the individual elements. For Twenty Twelve, 1 rem = 14 px, so take your desired font size and divide by 14.

    For example, if you want to increase the font of the body to 18px, add this to your child theme’s CSS file:

    body {
    	font-size: 1.286rem;
    	}

    Let me know if you have any questions.

    Thread Starter IainCMassey

    (@iaincmassey)

    Many thanks, Kevin Marsden. It seems to be actually a div of class entry-content that’s controlling the specific text I would like a bit more legible. I am experimenting with the child theme css.

    Kind regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Increase default font size’ is closed to new replies.