• Resolved micadz

    (@micadz)


    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.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter micadz

    (@micadz)

    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! ??

    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;}

    Thread Starter micadz

    (@micadz)

    Thank you very much !

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Grid Focus – Publish the Author’ is closed to new replies.