Need some modification in showthread

roul

New Member
This is the present condition,there is no joindate,post,rep power ,and the small table around all the words joindate,post and rep power
and onw main matter is logo and progrees bar is not at center..how to change all these to center
212dfmx.jpg


this is display i want..hope anyone help me to change my dispaly..:-)

x5r4nq.jpg



thanks,
 
postbit find this and b4 <if add this code <center>
and after last </div> add </center>

Code:
<if condition="$post['joindate']"><div class="info">$vbphrase[join_date]: $post[joindate]</div></if>
					<if condition="$post['field2']"><div class="info">$vbphrase[location_perm]: $post[field2]</div></if>
					<if condition="$post['age']"><div class="info">$vbphrase[age]: $post[age]</div></if>
					<div>
						<div class="info">$vbphrase[posts]: $post[posts]</div>
					</div>

postbit_legacy find this and b4 <if add this code <center>
and after last </div> add </center>


Code:
<if condition="$post['joindate']"><div class="info">$vbphrase[join_date]: $post[joindate]</div></if>
				<if condition="$post['field2']"><div class="info">$vbphrase[location_perm]: $post[field2]</div></if>
				<if condition="$post['age']"><div class="info">$vbphrase[age]: $post[age]</div></if>
				<div>
					<div class="info">$vbphrase[posts]: $post[posts]</div>
				</div>
 
Back
Top