• Resolved standup

    (@standup)


    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!

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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;
    }

    Thread Starter standup

    (@standup)

    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!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Place object after every title’ is closed to new replies.