• I did have a quick search through but I couldn’t find anything to help but I have a couple of simple question.

    1) I did go through the pictures tutorial but it didn’t seem to answer my question. – if I add a picture to a post like the most recent one on my site (http://www.unlimitedchoice.org/blog) – how do I create some extra space between the image and the post? At the moment it’s a bit too close together.

    2)Again for this question I did look at the tutorial but I just didn’t understand how to do this. – How do I add the name of the author, time and date to the top of each post automatically??

    Thanking you in advance!

    Amit

Viewing 3 replies - 1 through 3 (of 3 total)
  • For the images you need to add a style to your theme’s stylesheet. This might do it:


    .post img {
    margin: 5px; /*adjust as needed*/
    }

    If that doesn’t work, try adding padding to the top of div class=”entry” if the image is going on top of the text and below the post title.

    To add the author, time and date to the top of each post, you need to open index.php and insert this after the_title:

    <small><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small>

    Thread Starter amits

    (@amits)

    Thanks for that KA…

    where abouts would I put the – .post img {
    margin: 5px; /*adjust as needed*/
    } in the css???

    just stick it down at the end of the stylesheet (that’s style.css)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need a couple of simple tips…’ is closed to new replies.