Jump to content
WebFlake
  • 0

userpaneinfo like webflakes?


jacksnake4

Question

4 answers to this question

Recommended Posts

  • -1

Then find the code for the post count, remove it, and replace it with this:

        <if test="postCount:|:$author['member_id']">
        <li class='post_count desc lighter uip'>
            <span class='leftinfo'>{$this->lang->words['m_posts']}:</span>
            <span class='rightinfo'>{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
        </li>
        </if>
        <li class='uip'>
            <span class='leftinfo'>Joined:</span>
            <span class='rightinfo'>{parse date="$author['joined']" format="DATE"}</span>
        </li>
        <li class='uip'>
            <span class='leftinfo'>Reputation:</span>
            <span class='rightinfo'>{$author['pp_reputation_points']}</span>
        </li>

Then add this to your CSS:

.leftinfo { float: left; color: #505050; text-transform: capitalize; }
.rightinfo { float: right; color: #818181; }
.uip { display: inline-block; width: 100%; }
Edited by Sanctuary
  • Upvote 2

Need some IPB, MyBB, or HTML/CSS work done? Check out my thread!
:smiley:

Link to comment
Share on other sites

  • 0

To get it looking exactly like that you'll need to do some edits in your CSS, but here's the codes you'll need to display those things (besides the custom field):

<li>Joined: {parse date="$author['joined']" format="DATE"}</li>
<li>Reputation: {$author['pp_reputation_points']}</li>

 

You should already have the post count in your userInfoPane.

  • Upvote 1

Need some IPB, MyBB, or HTML/CSS work done? Check out my thread!
:smiley:

Link to comment
Share on other sites

  • 0

To get it looking exactly like that you'll need to do some edits in your CSS, but here's the codes you'll need to display those things (besides the custom field):

<li>Joined: {parse date="$author['joined']" format="DATE"}</li>
<li>Reputation: {$author['pp_reputation_points']}</li>

You should already have the post count in your userInfoPane.

 

thank you but I already have those codes, I was asking for the css code to make them display the way they do :)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...