For those who need and Author box for their Thematic Child Theme, here is the code:
Add this to functions.php:
//Thematic Author Box
function authorBox_above_comments() {
?>
<div class="authorbox">
<div class="left">
<?php echo get_avatar( get_the_author_meta('email'), '80' ); ?>
</div>
<div class="right">
<div class="author_box_author"><?php _e('by', 'thematic') ?> <?php the_author_posts_link(); ?></div>
<?php if ( get_the_author_meta('description') !='') { ?>
<div class="author_box_description"><?php the_author_meta('description'); ?></div>
<?php } ?>
<div class="author_box_meta">
<?php if ( get_the_author_meta('aim') !='') { ?>
<div><a href="https://twitter.com/<?php the_author_meta('aim'); ?>" target="_blank">@<?php the_author_meta('aim'); ?></a></div>
<?php } ?>
<?php if ( get_the_author_meta('yim') !='') { ?>
<div><span>Y!M: <?php the_author_meta('yim'); ?></span></div>
<?php } ?>
<?php if ( get_the_author_meta('url') !='http://') { ?>
<div><?php _e('Website', 'thematic') ?>: <a href="<?php the_author_meta('url'); ?>" target="_blank"><?php the_author_meta('url'); ?></a></div>
<?php } ?>
</div>
</div>
</div>
<?php }
add_action('thematic_abovecomments','authorBox_above_comments',0);
Add this to style.css:
/* Author Informations Box */
.authorbox {
overflow: hidden;
font-size: 13px;
background: #F5F5F5;
border: 1px solid #CCC;
color: #777;
text-shadow: 1px 1px 0px #FFF;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.authorbox a {
color: #777;
text-decoration: none;
}
.authorbox .left {
float: left;
width: 90px;
height: 90px;
margin: 25px;
}
.authorbox .left img {
padding: 3px;
background: #FFF;
border: 1px solid #CCC;
border-bottom: 2px solid #BBB;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.authorbox .right {
float: left;
margin-top: 25px;
width: 425px;
}
.authorbox .author_box_author {
font-weight: bold;
font-size: 16px;
color: #AAA;
}
.authorbox .author_box_author a {
color: #777;
text-decoration: none;
}
.authorbox .author_box_meta > div {
float: left;
margin: 0px 10px 10px 0px;
color: #555;
}
.authorbox .author_box_meta > div a {
color: #555;
}
Enjoy :)