Page Titles in All Caps

  • Unknown's avatar

    Hi there, the title on each page I create displays in all caps. I can’t seem to find where in my theme (Twenty Fourteen) or added CSS that is being specified.

    Thanks in advance for your help!

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

  • Hi there,

    You can use the following CSS code which will override the uppercase setting that is forced in the titles.

    .entry-title {
        text-transform: none;
    }

    Let me know if there’s anything else I can do for you. I’m happy to help.

  • Unknown's avatar

    Thank you, that worked perfectly. I noticed when I clicked on sub-menu items (in the sidebar) that the titles used a different font. Can you point me to feature I should edit to get them all the same?

    Thanks again for such great help.

  • Unknown's avatar

    Hey there,

    It looks as though these titles are actually the same font-family however the sub menu items have a different font-weight.

    To adjust the font weight so it matches the other titles, please add the following CSS:

    .entry-title {
        font-weight: 700;
    }

    Let me know if that works for you or if I have misunderstood in anyway what you are looking to achieve.

    Cheers

  • Unknown's avatar

    Hi – I just also realized that the pages that looked different were “default template” instead of full width. Changing that designation seemed to take care of it.

    Thank you!

  • The topic ‘Page Titles in All Caps’ is closed to new replies.