Viewing 3 replies - 1 through 3 (of 3 total)
  • To change the font go to:

    * APPEARANCE -> THEME SETTINGS -> CSS
    *
    * and add your CSS changes there.

    to change the Menu:

    .menu a {
        font-family: font_name;
    }

    to change the Post Title:

    .posttitle {
        font-family: font_name;
    }

    Hope this works.

    Make sure that you create a Child Theme before making any changes.
    http://codex.wordpress.org/Child_Themes

    Hi bananablh,

    Firstly: change your username as right now it displays your email for everyone!

    Now some help:

    >>> 1. Child Theme not needed.

    You don’t need a child theme IF you do only a few CSS changes in the CSS tab like suggested by Ivana, as the CSS tab is update safe for changes like this! 🙂

    >>> 2. Change the Menu and Page Titles:

    The correct CSS to change the menu is this:

    #access a {
    font-family: georgia;
    font-weight: bold;
    font-style: italic;
    font-size: 18px;
    color: deeppink;
    }

    /* Notes: just modify or remove the styles and customize to your needs!
    the original style is defined for “#access a” this is why you should write it the same (or stronger) to override. Otherwise it will not work. */

    /* Page Titles: */

    h2.pagetitle, h2.posttitle {
    color: deeppink;
    font-family: georgia;
    font-weight: bold;
    font-style: italic;
    font-size: 39px;
    }

    /* same as for the menu, take the original selector and modify it 😉 */

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change font for Pages Menu and Post Title’ is closed to new replies.