• Having two problems::

    One is that after I made my about page for my blog, it has this grey line to left side of the text towards the bottom. I cannot figure out how it got there and how to remove it.

    http://www.aroaringhome.com/about/

    Also, how do I move the links to the next post title, on the single post page, to the bottom? It is interfering with my navigation bar that I am still working on.

    http://www.aroaringhome.com/2009/02/18/before-after-the-dining-room/

    One last thing, how can I love the date stamp on my posts to the bottom and make it post the author of the post below the header instead?

    I am new at CSS and PHP but learning quickly. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Let me answer to your problems:
    1. The grey line is caused by that part of the post being part of a blockquote. Edit your post and remove the blockquote tag.
    2.In single.php move `<div class=”navigation”>
    <div class=”alignleft”><?php previous_post_link(‘« %link’) ?></div>
    <div class=”alignright”><?php next_post_link(‘%link »’) ?></div>
    </div>` to the where you want it on the page (below ‘<?php comments_template(); ?>’ perhaps)
    3. The code for the date stamp is <?php the_time('l, F jS, Y') ?> at <?php the_time() ?> move this to wherever you want it.
    4. The code for the author is <?php the_author() ?> place this under <h2><?php the_title(); ?></h2>

    I hope this helps if not get in touch: http://instantsolve.net

    grey line to left side of the text towards…

    It’s being caused by the blockqoute styling/tags in your post (<blockquote style="text-align: center;">).

    blockquote {
    border-left:5px solid #DDDDDD;
    margin:15px 30px 0 10px;
    padding-left:20px;
    }

    how do I move the links to the next post title, on the single post page, to the bottom

    You will find this in single.php;

    <div class="navigation">
    <div class="alignleft"><?php previous_post_link('&laquo; %link') ?></div>
    <div class="alignright"><?php next_post_link('%link &raquo;') ?></div>
    </div>

    You can move it to where you need it, and then style it here:

    .navigation {
    display: block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px;
    }

    One last thing, how can I love the date stamp on my posts to the bottom and make it post the author of the post below the header instead?

    ..look in index.php, as well as single.php, and any other pages that might be affected. I think you what this:

    <?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?>

    …all unqualified guesses.

    Good luck!

    DARN it.
    Sorry tomontoast. I really need to refresh the page before I hit the post button.

    I beat you to it! But two explanations are better than one!

    Thread Starter arrohrer

    (@arrohrer)

    You guys are awesome. Thanks so much, very helpful!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Three Things in editing Kubrick CSS’ is closed to new replies.