PDA

View Full Version : Postbit Modifications


SemperFidelis
07-08-2002, 07:37 AM
Attached is a copy of my current postbit.

What I want to do is :
- get avatars to start showing up (as shown in the next post)
- remove the verticle and horizontal line (as shown in the next post)
- get online status to appear on correct line
- align 'Report this post to a moderator | IP: Logged' to the bottom of post
- general cleanup of the postbit itself

http://vianet.net.au/~daren/vbulletin/postbit.jpg

Can someone please give me a hand with this ?

g-force2k2
07-08-2002, 08:23 AM
A) $post[avatar]

B) use css... or you can just kill the cellpadding and spacing but then thats just ;\

C) probably in the posbit_offline and postbit_online there's a '<br>' you have to remove

D) you'd probably have a make a new table to include it so you could align it to the bottom (easy i would think :P)

E) Personally im not a fan of this postbit nice colors but the buttons are dull and ugly ;p just my opinons though

F) Finally next time post this in the tempate modifiactions ;)

g-force2k2

SemperFidelis
07-08-2002, 11:28 AM
Thanks for the reply g-force2k2
Greatly appreciated
:)

Originally posted by g-force2k2
A) $post[avatar]


$post[avatar] is already in there


Originally posted by g-force2k2
B) use css... or you can just kill the cellpadding and spacing but then thats just ;\


Can you please be more specific


Originally posted by g-force2k2
C) probably in the posbit_offline and postbit_online there's a '<br>' you have to remove


postbit_offline :
<div style="width:100%; filter:glow(color=red, strength=4)">
Offline !
</div>
postbit_online :
<div style="width:100%; filter:glow(color=green, strength=4)">
Online !
</div>


Originally posted by g-force2k2
D) you'd probably have a make a new table to include it so you could align it to the bottom (easy i would think :P)


I attempted to follow these instructions :
http://www.vbulletintemplates.com/mods/showthread.php?s=&threadid=29
But didnt have too much success

Originally posted by g-force2k2
E) Personally im not a fan of this postbit nice colors but the buttons are dull and ugly ;p just my opinons though


Comments appreciated.
Although dont think for a second it will be staying that way !
ATM its just this style Dade released here :
https://vborg.vbsupport.ru/showthread.php?s=&threadid=40530
Plenty of customizations to come yet
Ive only just recently started learning this stuff, and Im lovin it
:D


Originally posted by g-force2k2
F) Finally next time post this in the tempate modifiactions ;)


Doh !
That'll teach me for havin 2 windows open !
Can a mod please move this over ?
Thanks


Can someone please have a look at the postbit I attached above and walk me thru exactly what needs to be done ?
Cheers

g-force2k2
07-08-2002, 12:31 PM
Here let me give it another shot :)

A) $post[avatar] doesn't work because your table isn't correct :p

find:

</table>
</tr>
<tr>
<td width="100%">

replace with:

</table>
</td>
</tr>
<tr>
<td width="100%">

see if that fixes that part ;)

B) thats the toughest one there is in my opinion and the best thing i can say is learn some css style sheets or just stick with having those lines there...

C) Instead of using the div tags just since the regular font tags...
(don't use glow but this should work)
<font style="filter:glow(color=red, strength=4)">

D) find this coding:

<p>$post[editedby]</p>

after it add:

</td></tr></table>
<table cellpadding="0" cellspacing="0" border="0" border="0" width="100%" valign="bottom"><tr><td width="100%">

not sure if that'll work but i just put the code together now :p

E) thats good to hear ;)

g-force2k2

Birdie501
07-08-2002, 12:56 PM
ups, i should reload the page before posting :)

I had the same problem with the glowing online/offline!
I think it has to do with div. Try to make it without div, for me it works!

SemperFidelis
07-08-2002, 02:38 PM
Cheers g-force2k2
Its starting to get somewhere now
I ll post a screengrab when shes all finished to see what you think
:)