jacksnake4 Posted June 29, 2014 Share Posted June 29, 2014 How could I arrange my regular fields and custom field like you have it here Link to comment Share on other sites More sharing options...
-1 Yuu Posted June 29, 2014 Share Posted June 29, 2014 (edited) 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 June 29, 2014 by Sanctuary 2 Need some IPB, MyBB, or HTML/CSS work done? Check out my thread! Link to comment Share on other sites More sharing options...
0 Yuu Posted June 29, 2014 Share Posted June 29, 2014 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. 1 Need some IPB, MyBB, or HTML/CSS work done? Check out my thread! Link to comment Share on other sites More sharing options...
0 jacksnake4 Posted June 29, 2014 Author Share Posted June 29, 2014 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 More sharing options...
0 Skreamzja Posted June 29, 2014 Share Posted June 29, 2014 The question(s) in this support topic have been answered and the owner has been able to solve the problem. Because of this, the support topic has been closed and moved.If you have other questions, please open a new topic. Link to comment Share on other sites More sharing options...
Question
jacksnake4
How could I arrange my regular fields and custom field like you have it here
Link to comment
Share on other sites
4 answers to this question
Recommended Posts