• Resolved GegeO

    (@gegeo)


    Hello,
    This may be easy, but I have not figured out. If you take a look at my site, most of my page tabs are in bold capital letters.

    https://moviereviewingfan.com/

    However the “Home” page tab that came with the Graphene theme came with small letters. Does anyone know how to change this letters to capital letters like the rest of my tabs? Please be specific when specifying where in the stylesheet I should go. ?? I am not a pro.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Find this code thats probably in your header.<a href="https://moviereviewfan.com" title="Home">Home</a>
    replace the title and the anchor text to capital letters and save the changes.This should work! ??

    by css:

    #nav .menu li a,
    #nav .menu li a:visited {
    	text-transform:uppercase;
    }

    either find some existing styles for #nav .menu li a or add the above to style.css.

    or in functions.php;
    change it in here:

    <li <?php if ( is_single() || is_front_page()) { echo 'class="current_page_item"'; } ?>><a href="<?php echo get_home_url(); ?>"><?php _e('Home','graphene'); ?></a></li>

    (untested)

    Thread Starter GegeO

    (@gegeo)

    Thanks alot!

    I tried “alcymyth” response:

    I looked for “#nav .menu li a:visited” on the CSS and added the line:
    text-transform:uppercase;

    THIS WORKED!

    Thanks for all the contributions! Made my day! ?? ?? ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘GRAPHENE TEMPLATE: HOW TO CHANGE THE "Home" tab to capital letters?’ is closed to new replies.