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.
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.
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
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;}
Thank you very much !
This topic has been closed to new replies.