I will use 1.8 Developer version of Thesis Theme
LogIn to your Dashboard and Go to Thesis > Custom File Editor
Select custom_functions.php form drop down menu and Click Edit Selected File.
Place this code below custom_functions.php :
Select custom.css file and place this code below it:function
post_footer() {
if
(is_single())
{
?>
<div
class
=
"postauthor"
>
<img src=
"YOUR-IMAGE-RL"
height=
"60"
width=
"60"
/>
<h4>Author: <a href=
"<?php the_author_url(); ?>"
>
<?php the_author_firstname(); ?> <?php the_author_lastname(); ?></a></h4>
<p><?php the_author_firstname(); ?> Has written <strong><?php the_author_posts(); ?></strong> posts for this blog.<br/><?php the_author_description(); ?></p>
</div>
<?php
}
}
add_action(
'thesis_hook_after_post_box'
,
'post_footer'
);
Now save it..postauthor { background: #BDF7CF; -moz-border-radius: 3px; -khtml-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border-top: 1px solid #048BB7; border-bottom: 1px solid #048BB7; border-left: 1px solid #048BB7; border-right: 1px solid #048BB7; overflow: hidden; padding: 1.5em; }.postauthor img { -moz-border-radius: 3px; -khtml-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border: 2px solid #048BB7; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #000000; font-size: 13px; margin-bottom: 12px; }
[Please comment for any Problem]
No comments:
Post a Comment
!! COMMENT HERE FOR ANY PROBLEM !!