Moving the post details? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    Moving the post details?

    avatar
    CrystalSoul
    Forumember


    Male Posts : 149
    Reputation : 1
    Language : English
    Location : Egypt

    Moving the post details? Empty Moving the post details?

    Post by CrystalSoul April 23rd 2014, 11:13 am

    Hey everyone, Is it possible to move these http://prntscr.com/3cm0ip under the white line instead of being at the top of it?

    Regards.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51556
    Reputation : 3519
    Language : English
    Location : United States

    Moving the post details? Empty Re: Moving the post details?

    Post by SLGray April 23rd 2014, 11:15 am

    Please post your forum's link, especially a link to a topic guests can see.



    Moving the post details? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Pizza Boi
    Pizza Boi
    Hyperactive


    Male Posts : 2016
    Reputation : 160
    Language : French
    Location : Pizza Hut!

    Moving the post details? Empty Re: Moving the post details?

    Post by Pizza Boi April 23rd 2014, 11:16 am

    Hi Very Happy

    Code removed

    Code:
    .post-options img { position: relative; bottom: #px; }

    ^ For the Multi-Quote, Quote, Edit, other buttons.

    For the "Subects, Yesterday, etc.". AP < Display < General < Templates < viewtopic_body < Find this portion:

    Code:
    <td><span class="postdetails"><img src="{postrow.displayed.MINI_POST_IMG}" alt="{postr

    Replace it with:

    Code:
    <td><span class="postdetails" id="dis"><img src="{postrow.displayed.MINI_POST_IMG}" alt="{postr

    Then add this in CSS:

    Code:
    #dis {
      position: relative;
      top: 20px;
    }

    Since the messages also get affected, add this below the code or you can mix both:

    Code:
    .postbody {
      position: relative;
      top: 20px;
    }

    Edit: There was a problem when I was on his forum, so this is the final code he used:

    Code:
    td.hr {
      position: relative;
      bottom: 20px;
    }
    span#dis, .post-options img {
      position: relative;
      top: 11px;
    }

    Regards,
    Pizza Boi