• Hi,

    I’ve created a twentyeleven-child theme and activated it.

    question 1: How do I increase the size of the body font on all pages?

    question 2: Do I do this in style.css of the twentyeleven-child theme?

    I can’t find the right font in this file to change…

    question 3: How do I change the color of the menu bar and the color of the menu font?

    (I want to make the menu font black and the menu bar a light color.)

    Thanks, Richard

    Here’s the site, if it helps: https://richardclunan.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • First of all, create a child theme with just a style.css file in it. You don’t have to, but I strongly recommend it.

    Question 1:

    Create a style rule like this in style.css (at the end if it already has content):

    body {
      font-size: 110%; /* or whatever */
    }

    If this doesn’t work everywhere, you may need a more specific rule for some occasions. Ask again if this turns out to be the case.

    Question 2:

    Best do it in a child theme.

    (not sure what you mean by changing fonts or how it relates to your question, sorry)

    Question 3:

    You need to change this rule, I think:

    #access {
      background: -moz-linear-gradient(#252525, #0A0A0A) repeat scroll 0 0 transparent;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
      clear: both;
      display: block;
      float: left;
      margin: 0 auto 6px;
      width: 100%;
    }

    You probably need to add something like this to your style.css:

    #access {
        background-color: #nnnnnn;
    }

    Where #nnnnnn is the colour you want.

    Should do it, I think.

    Cheers

    PAE

    Thread Starter Wordfruit

    (@wordfruit)

    Thanks, peredur

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I change body font size and menu bar?’ is closed to new replies.