• Resolved lionnes

    (@lionnes)


    hello
    I am using wordpress 3.01 desciple theme

    Here is my blog
    http://www.lionnes.com/blog

    i just reduced space between posts by adding

    .post {
    margin-bottom: -25px;
    }
    at the bottom of my style sheet
    will also love to reduce space between my posts and comment bar, and if possible bring the comment bar to the same line with (add share) found at the end of each post

    thanks in advance

Viewing 9 replies - 1 through 9 (of 9 total)
  • Change the margin from 10px to -40px for .post-foot in style.css around line 145:

    .post-foot {
        color: #999999;
        font: 8pt/160% Georgia,"Times New Roman",Times,serif;
        margin: -40px 0 0;
        overflow: hidden;
    }
    Thread Starter lionnes

    (@lionnes)

    you are such a genius!
    thnks a lot, that did the trick, can you pls tell me how to add a horizontal line at the end of each post?
    thanks again in advance

    Add the border-top property to .sep in style.css around line 35:

    `.sep {
    background: url(“images/sep.gif”) no-repeat scroll center top transparent;
    border-top: 2px solid black;
    display: block;
    height: 30px;
    overflow: hidden;
    }

    Thread Starter lionnes

    (@lionnes)

    thank u very much

    but I want to change the colour to colour #333333
    i tried adding
    border-top: 2px; color:#333333; instead, but the line just dissapeared

    @lionnes

    I assume you mean the border color? It should be

    border-top: 2px #333 solid;

    Try border-top: 2px solid #333333;

    Thread Starter lionnes

    (@lionnes)

    thanks guys, u guys are awesome!
    my blog is now complete

    Thread Starter lionnes

    (@lionnes)

    hello
    I recently installed UPM polls, and I added

    <?php upm_polls() ?>

    to the end of my header php as adviced,
    Whatevr possition in my posts I insert the the poll
    <?php upm_polls() ?>
    the poll appears at the top of my posts, wheras i want it at the end of my posts.

    any ideas?

    thxs

    You will probably get more help if you start a new thread with this topic. Since this thread is marked ‘Resolved’, not many people will look at it.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘reducing space between posts and comment bar’ is closed to new replies.