• mwgerard

    (@mwgerard)


    Hi there –

    Thanks again for all the help you give us! Just updated to version (1.5.5) and everything still works. Just one thing I noticed that I’d like to change is the list of tags at the bottom of posts are now in all CAPS. I’d like them to be lowercase, if possible. I’ve done a scroll through the various code templates but nothing was jumping out at me.

    http://mwgerard.com

    Thank you so much!

    http://wordpress.org/extend/themes/brunelleschi/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi mwgerard,

    I noticed this in your style sheet (style.css):

    #main .entry-content h3 {
        font-variant: small-caps;
        letter-spacing: 0.25em;
        text-transform: lowercase;
    }

    If you remove font-variant: small-caps; it will make the tags lower case instead of small caps.

    Make sure you’re using a Child Theme before you make changes (unless your theme allows you to enter custom CSS without editing style.css).

    Hope this helps!

    Thread Starter mwgerard

    (@mwgerard)

    Thanks. I can add custom CSS. Do I just copy and paste the above but remove that line? Creating this?

    #main .entry-content h3 {
    letter-spacing: 0.25em;
    text-transform: lowercase;
    }

    Hi mwgerard,

    Actually, just adding this to your custom CSS should work:

    #main .entry-content h3 {
    font-variant: normal
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Theme: Brunelleschi] Tag & category font is in all caps’ is closed to new replies.