Quote:
Originally Posted by bada_bing
Does anyone know how I can list my extra fields like this within the Thread
Title: Bla Bla Bla
Field 1: xxxxxx
Field 2: xxxxxx
Field 3: xxxxxx
Instead of the standard
Title: Bla Bla Bla
Fields1: xxxxxxx Field 2: xxxxxxx Field 2: xxxxx
|
In your post bit or post bit legacy try this:
Find this:
Code:
<if condition="$post[postcount] == '1' ">
<div align="right">$extrafields</div>
</if>
change to this:
Code:
<if condition="$post[postcount] == '1' ">
<div align="left">$extrafields</div>
</if>
Basically your changing the word "right" to "Left".