• On my sidebar all of the titles are in lowercase:

    pages
    categories
    search
    archives

    Instead of:

    Pages
    Categories
    etc

    I have tried to capitlize the first letter such as:

    <?php wp_list_pages(‘title_li=Pages’); ?>

    But it still displays in lower case letters. I assume this must now be a css thing..but after looking it over, I can’t see how to fix this problem.

Viewing 10 replies - 1 through 10 (of 10 total)
  • Take a look at the #sidebar stuff in the css – should be somewhere in there you can add text-transform:capitalize; – maybe in the #sidebar h2 element, not sure since it can vary theme to theme.

    Thread Starter Jasont

    (@jasont)

    Tried that – didn’t work…

    Well, hmmm. What theme is it? (And if it’s the default, I can’t help you – I won’t touch that one….)

    Thread Starter Jasont

    (@jasont)

    It is a custom theme.. it looks like “menu” has been used in place of “sidebar”

    Here is what he has:

    }
    #menu {
    background: url(wp-images/menubg.gif) repeat-y right;
    float: right;
    width: 200px;

    Any idea why the menu topics won’t capitalize?

    what’s the website address? That way people can look at your css. most menu headers are “h2” so you may want to check that one. Did you do a search for “text-transform”?

    Thread Starter Jasont

    (@jasont)

    Here is the H2 on my stylesheet

    h2 {
    border-bottom: 1px dotted #ccc;
    color: #000;
    font: bold 95% arial, tahoma, sans-serif;
    margin: 15px 0 2px;
    padding-bottom: 2px;

    I have been searching on ‘sidebar capitalization’

    Thread Starter Jasont

    (@jasont)

    It’s here:
    #nav ul li {
    font: normal 100% arial, tahoma, sans-serif;
    letter-spacing: 0.1em;
    margin-top: 10px;
    padding-bottom: 2px;
    text-transform: lowercase;
    }

    Take out the line text-transform:lowercase;

    Thread Starter Jasont

    (@jasont)

    Thanks 🙂

    Now why the heck did he put that in there??

    Oh well, problem solved.

    Hard to say what he might have had in mind.

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Sidebar in lowercase’ is closed to new replies.