Forums

[resolved] Place object after every title (3 posts)

  1. standup
    Member
    Posted 4 years ago #

    Hello fellow bloggers,

    Could someone help me out with this problem:

    I need WordPress to put a red period after every title; I couldn't enter it directly into the form inside the CMS. I looked into the wp-admin files (I know, I know--bad idea, generally), but couldn't find exactly where it generates the title.

    I'm using 2.7, which I'd like to say is a pretty sweet suite.

    Thanks!

  2. RustedWire
    Member
    Posted 4 years ago #

    In your theme index file find the following line:

    <?php the_title(); ?>

    and add the following directly after it.

    <span class="redperiod">.</span>

    then add the following to your theme's style

    .redperiod{
    color: #FF0000;
    }

  3. standup
    Member
    Posted 4 years ago #

    This is resolved, just make sure to put it after EVERY <?php the_title> for consistency, if you're in the same boat.

    All the best!

Topic Closed

This topic has been closed to new replies.

About this Topic