• Resolved Louise

    (@louiseb)


    In the twentyten theme, I’d like to change the color of the menu bar at the top, and change the font in the sidebar from the body (serif) font to match the menu (sans serif) font. Can you help me find where to change these? Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • all menu related styles are in style.css, starting at (line 370):

    /* =Menu
    -------------------------------------------------------------- */
    
    #access {
    	background: #000;
    .....

    the font styles start here (line 110):

    /* =Fonts
    -------------------------------------------------------------- */
    body,
    input,
    .....

    if you add #primary and #secondary to the second big list of selectors (the one starting with h3#comments-title, ), that should change the font in the sidebar.

    Thread Starter Louise

    (@louiseb)

    Thanks, I have the menu color resolved. I see the code for the fonts, but don’t know where I need to add #primary and #secondary ?

    you found this location:

    body,
    input,
    textarea,
    .page-title span,
    .pingback a.url {
    	font-family: Georgia, "Bitstream Charter", serif;
    }
    h3#comments-title,
    h3#reply-title,
    ...

    simply add the two new ones for instance here into the second list of selectors:

    body,
    input,
    textarea,
    .page-title span,
    .pingback a.url {
    	font-family: Georgia, "Bitstream Charter", serif;
    }
    h3#comments-title,
    #primary,
    #secondary,
    h3#reply-title,
    ...
    Thread Starter Louise

    (@louiseb)

    Awesome! With my limited understanding, I don’t know how that works, but it does!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘change menu color and sidebar font in 2010?’ is closed to new replies.