Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Formatting buttons in WordPress Post Meta region

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #37652
    localpulse
    Member

    Image and video hosting by TinyPic

    This is my post meta area within the WordPress loop.
    This is my CSS for the area:

    /* Post Meta
    
    */

    .post-meta {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    clear: both;
    color: #666;
    font-size: .93em;
    padding: 5px 0 5px 0;
    text-transform: uppercase;
    font-family:Oswald;
    }

    .permalink {padding-left:17px; }

    .categories{float:right; padding-left:17px; word-spacing:17px;}

    So please give some ideas about what can be done to get the buttons aligned with vertically with the text and to reduce the whitespace between borders. Thanks!

    #101290
    TheDoc
    Member

    Would need a link to your site to help.

    #101304
    localpulse
    Member

    Sure, it ishere. REMOVED. Appreciate your help.

    #101319
    TheDoc
    Member

    Some of your things are being floated to the left, others have inline-block and some have no positioning at all.

    You can make everything display: inline-block; or float: left;

    #101331
    localpulse
    Member

    That makes sense, I went ahead and floated everything. The true culprit is the custom field(price), which is generated by shortcode and not easily assigned a CSS class. Thanks for the help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.