• Dear,

    I want to remove some info that appear under every single title!

    For Example Instead Published at 10 Jan 2008

    I Need Just (10 Jan 2008 “Aligned Right”
    How can I align it right?

    For the one who posted the post… I don’t want it to appear..

    For the comments.. I also need to align it right…

    Sorry I’m being annoying:S!

Viewing 1 replies (of 1 total)
  • To get rid of the Posted In phrase look in index.php for,

    <div class="post-date">Published in <?php the_time('F jS, Y') ?>

    and delete those two words. You should now have,

    <div class="post-date"><?php the_time('F jS, Y') ?>

    You’ll have to that for all of the post pages, not just the index.

    To right align it, if you look at it you’ll see it has been assigned the class=”post-date” … so… look in the style sheet for,

    .post-date {

    and add,

    text-align: right;

Viewing 1 replies (of 1 total)

The topic ‘Remove Info Under the title’ is closed to new replies.