• These forums have been so helpful in tweaking my page!

    But one thing I cannot find is how to decapitalize the word “Home” across the navigation spread. I am using the Autofocus theme.

    Maybe I can make this more clear. Please take a look at my site and notice the words, “Home” “people” “places” “things” etc.
    Those are the links to the pages on my site.
    All the titles to the pages are editable, except the index page, which is by default titled “Home.”

    I simply want to make the ‘h’ in “Home” a small letter, not a capital.

    Can any one please help??? site below:
    https://www.suzannestrongphotography.com/

    I am not sure if this is a WordPress issue or an Autofocus (theme) issue

    thank you in advance

Viewing 4 replies - 1 through 4 (of 4 total)
  • It’s a theme issue. Try editing style.css and changing:

    #access #menu li {
    display:inline;
    margin:0 15px 0 0;
    }

    to:

    #access #menu li {
    display:inline;
    margin:0 15px 0 0;
    text-transform:lowercase;
    }

    Appearance – Editor – edit Theme Functions (functions.php)

    look for
    *********************************************************
    // Produces a list of pages in the header without whitespace — er, I mean negative space.
    function sandbox_globalnav() {
    echo ‘<div id=”menu”>

    $menu = wp_list_pages(‘title_li=&sort_column=menu_order&echo=0’); // Params for the page list in header.php
    echo str_replace(array(“\r”, “\n”, “\t”), ”, $menu);
    echo ‘<li class=”page_item”>rss</div>’;
    }
    *************************************************************
    it’s quite close to the bottom of the page, but where I have changed it to read “light table” you would enter home with no caps.

    see how I have it here

    don’t forget to change the chmod settings before you edit it, and don’t forget to change them back when you are done ;0)

    Thread Starter smastrong

    (@smastrong)

    thank you guys! With your direction, I tried something a little different and resolved the issue very easily.
    Where it says:
    get_bloginfo (‘name’) . ‘” rel=”home”>home
    the second home word was capitalized in the style sheets…all I had to do was make it a small ‘h’ and problem solved.
    Original code below:

    // Produces a list of pages in the header without whitespace — er, I mean negative space.
    function sandbox_globalnav() {
    echo ‘<div id=”menu”>

      <li class=”page_item”>Home‘;

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Autofocus decapitalize “Home”’ is closed to new replies.