Resource icon

vBulletin Signature Seperators 2014-11-09

No permission to download

Shelley

Tazmanian
Joined
May 11, 2005
Messages
4,101
Shelley submitted a new resource:

Signature Seperators - Signature Seperators


Summary: A selection of signature separator bars (as seen on this site (with the black bar signature separators)
Board Software: vBulletin
Format: .PNG
Install Notes: Read below and note that you'll have to rename the bars to "signature_seperator" without the...

Read more about this resource...
 
Last edited by a moderator:
Joined
Nov 2, 2008
Messages
1,346
For the MyBB users:

ai283.photobucket.com_albums_kk303_BioAlchemistBabe_mybbsl.png

Go to ACP> Templates & Style >Templates > *your site's template* > Postbit Template > postbit_signature

Find:

HTML:
<hr size="1" width="25%"  align="left" />
{$post['signature']}

and replace with:
HTML:
<img src="{$mybb->settings['bburl']}/images/sig_separator.png" border="0" alt="" /><br />
{$post['signature']}
 

Mikey

mikeylicio.us
Joined
Dec 28, 2009
Messages
1,491
Would be fun if these changed colour per usergroup.
 

gcv

Senior Member
Joined
Feb 10, 2010
Messages
133
Mikey said:
Would be fun if these changed colour per usergroup.

Something like this ?



HTML:
<div>
<if condition="is_member_of($bbuserinfo, 6)"><br />
<img src="style1/misc/sig_seperatorRED.png"  border="0" alt="" /><br />
$post[signature] <ELSE /><br /><img src="style1/misc/sig_seperator.png"  border="0" alt="" /><br />
$post[signature] </if></div>

Key:
sig_seperatorRED.png = admin
sig_seperatorGREEN.png = mod
etc

It will be one long piece of code changing the condition for the various user's but you get my drift.

The code maybe wrong or someone with better PHP would know a better re-write.

:p < lol
 

Mikey

mikeylicio.us
Joined
Dec 28, 2009
Messages
1,491
that one will only show different colours depending on what usergroup you're in ;)

It'd be something like this (untested)

HTML:
<if condition="$post['usergroupid'] == 6"><img src="style1/misc/sig_seperatorADMIN.png"  border="0" alt="" /><br />$post[signature]<else />
<if condition="$post['usergroupid'] == 5"><img src="style1/misc/sig_seperatorSMOD.png"  border="0" alt="" /><br />$post[signature]<else />
<if condition="$post['usergroupid'] == 7"><img src="style1/misc/sig_seperatorMOD.png"  border="0" alt="" /><br />$post[signature]<else />
<img src="style1/misc/sig_seperator.png"  border="0" alt="" /><br />$post[signature]</if>

(using the default vB usergroupid's)
 

Shelley

Tazmanian
Joined
May 11, 2005
Messages
4,101
Update: Added Thinner bars in png and psd format in the first post of this thread.
 

Ryan Ashbrook

IPS Developer
Joined
Jan 26, 2004
Messages
3,571
gcv said:
Something like this ?



HTML:
<div>
<if condition="is_member_of($bbuserinfo, 6)"><br />
<img src="style1/misc/sig_seperatorRED.png"  border="0" alt="" /><br />
$post[signature] <ELSE /><br /><img src="style1/misc/sig_seperator.png"  border="0" alt="" /><br />
$post[signature] </if></div>
Key:
sig_seperatorRED.png = admin
sig_seperatorGREEN.png = mod
etc

It will be one long piece of code changing the condition for the various user's but you get my drift.

The code maybe wrong or someone with better PHP would know a better re-write.

:D < lol

It'd be easier to rename the bars themselves.

Something like:

HTML:
<img src="style1/misc/sig_seperator_$post[usergroupid].png"  border="0" alt=""  /><br />
$post[signature]

Then simply rename the bars to include the usergroup ID.
 

MjrNuT

Fan
Joined
Jun 23, 2008
Messages
933
Can these bars be extended so they got the width of the post and/or can they be centered?

idk if that is possible, but seems like something useful?

Thanks
 

Shelley

Tazmanian
Joined
May 11, 2005
Messages
4,101
They could. All you would have to do is slice them into 3 images a static right, repeating center, and a static left. I'd imagine it wouldn't be hard to accomplish to have it extend to a percentage of the post width. Slicing the images would only take a few seconds to do. ;)
 
Joined
Jan 23, 2010
Messages
993
Perhaps a candy cane styled one for Christmas time too, maybe even with the hooked end on lol :)
 

Shelley

Tazmanian
Joined
May 11, 2005
Messages
4,101
Michael said:
Perhaps a candy cane styled one for Christmas time too, maybe even with the hooked end on lol :)

That's actually a good idea Michael. :) Well, I personally think it is. I'll post a themed sig separators pack when time permits (xmas, halloween, easter etc) .
 
Joined
Feb 8, 2010
Messages
552
Okay I know this is an old thread but for others out there hoping to have this on vBulletin 4 I went into postbit_legacy and posted the information here:
<vb:if condition="$post['signature']">
<center><br /><img src="images/misc/sig_seperator.png" border="0" alt="" /><br /></center>{vb:raw post.signature}
</vb:if>
{vb:raw template_hook.postbit_signature_end}
</div>

This centers the signature, however am still having trouble trying to get the image slightly longer - not the whole way across but just expanding a little bit.

I do hope somewhere around here finds this useful in the future.
 
Top