Forums

[resolved] Grid Focus - Publish the Author (5 posts)

  1. micadz
    Member
    Posted 3 years ago #

    I would like to publish the name of the author under the Title of the article. How do I do that. This is a link to my blog. Thank you.

  2. esmi
    Theme Diva & Forum Moderator
    Posted 3 years ago #

  3. micadz
    Member
    Posted 3 years ago #

    Thank you esmi. Do you know how I can reduce the space between the title and the author. I would also like to change the color of the author to match the one of the date. Thanks and have a great Sunday! :D

  4. esmi
    Theme Diva & Forum Moderator
    Posted 3 years ago #

    style.css (line 311)

    .post h2 {
    margin-bottom:10px;
    padding:0 3px;
    }

    Change to

    .post h2 {
    margin-bottom:0;
    padding:0 3px;
    }

    Changing the color of the author's name is a little more complex. First of all. amend the <p>This post was written by <?php the_author(); ?></p> in your template to <p class="author">This post was written by <?php the_author(); ?></p>. Then try adding the following to the bottom of style.css:

    .author a {color:#222222;}

  5. micadz
    Member
    Posted 3 years ago #

    Thank you very much !

Topic Closed

This topic has been closed to new replies.

About this Topic