CSS in style.css:
#authorarea{
background: #f0f0f0;
border: 1px solid #d2d2d2;
padding: 10px;
width:500px;
overflow:hidden;
color: #333;
}
#authorarea h3{
font-size: 18px;
color:#333;
margin:0;
padding:10px 10px 5px 10px;
}
#authorarea h3 a{
text-decoration:none;
color: #333;
font-weight: bold;
}
#authorarea img{
margin:0;
padding:10px;
float:left;
border: 1px solid #ddd;
width: 100px;
height: 100px;
}
#authorarea p{
color:#333;
margin:0;
padding:0px 10px 10px 10px;
}
#authorarea p a{
color:#333;
}
.authorinfo{
padding-left:120px;
}
HTML in single.php :
<div id=”authorarea”>
<?php echo get_avatar( get_the_author_meta( ‘user_email’ ), 70 ); ?>
<h3>About <?php get_the_author(); ?></h3>
<div class=”authorinfo”>
<?php the_author_meta( ‘description’ ); ?>
” rel=”author”>View all posts by <?php get_the_author(); ?> <span class=”meta-nav”>→</span>
</div>
</div>
Hi,
Is this likely to help with the Title not displaying as well? Seems like it will just bring in the author info.
Cheers
I’m really just trying to get it the individual posts to display as they normally would with the Sight theme. The single.php code is unchanged, so the problem must lie in a change I’ve made to the CSS I’m guessing??