• Resolved alexrad

    (@alexrad)


    I have a list of pages that appears in top navigation menu, with ALL CAPS.

    The code looks like this:
    <?php wp_list_pages(‘title_li=&sort_column=menu_order’); ?>

    I want to make all letters lowercase and/or first letter capital, other lowercase.

    Can anybody help?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Most likely they are appearing in all caps because of a CSS styling rule.
    text-transform: uppercase;

    The other options are
    text-transform: capitalize;
    text-transform: lowercase;

    Search your stylesheet for text-transform: uppercase;
    and change it to one of the other options.

    Thread Starter alexrad

    (@alexrad)

    Great! I resolved this problem.
    Thanks a lot, I would be searching for this for a week probably 🙂
    You are so helpful.

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

The topic ‘WP_List_Pages’ is closed to new replies.