Quote:
Originally Posted by FiMeTi
Good job man! Dont use this, but can you please tell me, how you added the "AWARDS SHOWCASE" next to the userstats in postbit(seen in your pics 2 and 3)? I?ve tried hours, but did not get it working. lol
thx buddy
|
Try tinkering w/ this
find:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
</td>
After add (*See Notes Below) :
Code:
<td valign="top" nowrap="nowrap">
<if condition="$post['usertitle']"><div class="smallfont">
<img src="http://www.yoursitename.com/images/yourimagename.gif">
</if>
</td>
*Revise the code, remove my image code and add your own code for almost anything
also it does not need the
Code:
<td valign="top" nowrap="nowrap">
before or the
after the middle contents nor does it have to be called by
Code:
<if condition="$post['usertitle']"><div class="smallfont">
as I used it only to display what I wanted, you could even go down further in postbit and ......
Code:
$template_hook[postbit_signature_start]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
then inside the hooks before or after the <if> </if> pair you could add your own code perhaps as a signature header, maybe a top or bottom border based on your site like for mine I could do a slim top header for the size everyone's signature should be that says TGW Sig!! or something else etc for example:
Code:
$template_hook[postbit_signature_start]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<img src="http://www.yoursitename.com/images/yourimagename.gif">
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
You can center that etc or make it any code just about or you can even call in the data/image etc via a custom field you created where the user could call the image or song or well whatever you can imagine!! And btw, there's that line just above your sig in the code there... you can remove it
Now, did you get my shade tree methodology
or no? :erm:
:erm:
Sorry, my brain works in mysterious ways.... maybe the Kryptonian in me eh?
S-MAN