Viewing 1 replies (of 1 total)
  • You can do this if you can look at your page templates and your stylesheet.

    Try going to Appearance -> Editor from the left hand menu in your dashboard. First open the .php for the template you are viewing (perhaps it’s index.php). Look for the title. On my page it’s

    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

    this element is withing a div with the class of post, may be the same for you

    Now open the style sheet (most likely style.css). look for the styling of the title. On my style sheet it’s

    .post h2 a{
    	font-size: 18px;
    	color: dimgray;
    	margin-bottom: 0px;
    
    }

    As you can see my linked titles are dimgray.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing the color of page titles’ is closed to new replies.