• Hello,

    The title / author / date information is not displaying on the individual post pages of my website and I just can’t seem to identify the problem. The post categories display fine, but not the title / meta info.

    I’m running the Sight theme by WP Shower.

    Web address is: https://www.wastedyearsrecords.com

    Any assistance would be greatly appreciated.

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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>

    Hope it will help you

    Thread Starter wastedyears

    (@wastedyears)

    Hi,

    Is this likely to help with the Title not displaying as well? Seems like it will just bring in the author info.

    Cheers

    Thread Starter wastedyears

    (@wastedyears)

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

    Thread Starter wastedyears

    (@wastedyears)

    Can anyone help?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Single post title / author / date etc. not displaying’ is closed to new replies.