Font Sizes

  • Unknown's avatar

    I would like to change the color of my menu boxes at the top and I do not know how and second, I would like to make the name of my website much larger than what it is now.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I would like to change the color of my menu boxes at the top and I do not know how

    You can use this bit of CSS:

    #main-nav ul {
    background-color: #fff;
    }

    Just input that under Appearance -> Customize -> CSS and switch out the fff for whatever color you want to use! You can find the hex codes for various colors here:

    http://www.w3schools.com/html/html_colors.asp

    I would like to make the name of my website much larger than what it is now.

    Adding this bit of CSS on to the above code should do the trick:

    h1#site-title {
    font-size: 28px;
    }

    Can you give that a try?

  • The topic ‘Font Sizes’ is closed to new replies.