vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=192)
-   -   Mini Mods - Signature Legend, new signature look (V2) (https://vborg.vbsupport.ru/showthread.php?t=134387)

UltimateOreo! 01-04-2007 09:33 PM

Does this work with vb 3.6?

jw00dy 01-10-2007 06:59 AM

Yes it does.

Very cool little trick. Thank you.

Installed.

Roms 01-13-2007 03:04 AM

Quote:

Originally Posted by UltimateOreo! (Post 1150920)
Does this work with vb 3.6?

Yes. not sure why you are asking since this IS the 3.6 mod forums... :rolleyes:

Quote:

Originally Posted by Brew (Post 1150708)
For some reason my skin doesn't have this line:

HTML Code:

<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
Any ideas what to do?

I've gotten the sig to the bottom but there is still a line above the sig:

http://www.politicalforums.net/forum...ead.php?t=1541

Thank you for your help :)

My support is limited to the default VB version. I can't give support for every style that changes the postbit. If you want this to work correctly revert your postbit and then add the changes. (I'm getting multiple errors on your site as it is... ;) )

Click install, thanks

encryption 01-14-2007 03:36 AM

I was skeptical at first but boy am I glad to have installed this hack.

Btw is there a way to control the thickness of the border, although it appears ok in IE, its really fat in FireFox (which is what a majority of the board members, including myself use).

Masked Crusader 01-14-2007 08:49 PM

Installed. Nice template mod!

Roms 01-23-2007 09:54 PM

Quote:

Originally Posted by encryption (Post 1158571)
I was skeptical at first but boy am I glad to have installed this hack.

Btw is there a way to control the thickness of the border, although it appears ok in IE, its really fat in FireFox (which is what a majority of the board members, including myself use).

Not that I know of, you can try adding variables for it in your CSS and see if it works... I haven't tried.

Quote:

Originally Posted by shanejeffery86 (Post 1159302)
Installed. Nice template mod!

Thanks :)

Nathan2006 02-02-2007 08:59 AM

Thank you very much Roms

Install :)

cuphongle 02-02-2007 03:49 PM

wonderful, thanks

Roms 02-03-2007 12:12 PM

Quote:

Originally Posted by Nathan2006 (Post 1172831)
Thank you very much Roms

Install :)

Thank you. :)

Quote:

Originally Posted by cuphongle (Post 1173014)
wonderful, thanks

Thanks, and please click install as well (first post, "mark as installed"). :)

sportsoutlaw 02-03-2007 11:18 PM

Nice template mod. I am not big into hacking up my forum, but never really liked how it was somewhat difficult at times to separate a sig from the rest of the post.

This looks nice!

Roms 02-04-2007 06:21 PM

Thanks and thanks for clicking install. :)

Rakehel 02-08-2007 10:26 AM

Roms, I've looked for an answer in this topic but haven't spotted it. I've installed the mod, but whenever I view it on a monitor that is less than 19" some of the signatures have an additional line running through some of the text that members have entered there. It's related to the fieldset tag. (?) Any ideas? (I hope this screenshot shows up OK.)

Thanks.

Rakehel 02-09-2007 05:18 PM

Would anyone else possibly have a suggestion?

Roms 02-28-2007 01:06 AM

It's the way the table is setup to force the signature at the bottom of the post. In some circumstances it will mess up the signature. You may want to try customizing the code or installing version 1.

Thanks :)

DieselMinded 03-28-2007 05:01 AM

Thanks I like this and even thos I already had edits in my templates in the areas you required edits i worked your edits in and it WORKED !

Thanks

DM

Roms 04-05-2007 12:20 AM

Great, thanks for installing! :)

rjmjr69 04-05-2007 09:37 PM

Quote:

Originally Posted by Roms (Post 1141913)
Thanks for installing.

Just remove this part:

PHP Code:

<HR



Delete that whole line? Cause I do not see anything with that except a whole line of code?

Thanks this is classy

ca2oom 04-07-2007 08:32 PM

Thanks Roms

This looks very nice.. Clicked install :)

UaeStar 04-08-2007 08:43 AM

:D thanks man

UaeStar 04-08-2007 10:09 AM

man i need useername with color group

can you given me the code??

Nathan2006 04-10-2007 06:13 AM

Quote:

Originally Posted by rjmjr69 (Post 1220674)
Delete that whole line? Cause I do not see anything with that except a whole line of code?

Thanks this is classy


I forgot how to do it too lol

Just remove this line of code in red

Code:

<!-- sig -->
  <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
  <div valign="bottom">
<fieldset><legend>$post[username]'s Sig:</legend>$post[signature]</fieldset>
  </div>
  <!-- / sig -->

;)

Kalina 06-08-2007 08:53 PM

This is amazing! Looks so much better! Thanks so much!!

Roms 06-08-2007 11:13 PM

Quote:

Originally Posted by Kalina (Post 1264388)
This is amazing! Looks so much better! Thanks so much!!

Thanks :)

Philipaclayton 06-10-2007 09:18 AM

looks good going to install cheers

Roms 06-17-2007 11:03 PM

Quote:

Originally Posted by Philipaclayton (Post 1265373)
looks good going to install cheers

Thanks, please click "mark as installed if you use it. :)

chiwexa 07-19-2007 02:46 PM

Thanks, but how can I get the curved corners?

Roms 07-20-2007 08:22 PM

Quote:

Originally Posted by chiwexa (Post 1295731)
Thanks, but how can I get the curved corners?

The corners are rounded in IE and may not show up the same way in Firefox...

AWJunkies 12-02-2007 06:17 AM

I have a question why would you do all that extra coding to put it towards the bottom rather then default top? All you have to do is add valign="bottom" in the div section. Let me show you to put it at the bottom all you have to do is:

Here is normal code within postbit_legacy

Code:

<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

All you have to do is within the <div> is do this:
Code:

<if condition="$post['signature']">
<!-- sig -->
<div valign="bottom">
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

So to do both mods bottom and your new sig border is:

Open postbit_legacy
Find:
Code:

<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

Replace with:
Code:

          <if condition="$post['signature']">
                <!-- sig -->
                        <div valign="bottom">
                        <fieldset><legend>$post[username]'s Sig:</legend>$post[signature]</fieldset>
                        </div>
                <!-- / sig -->
                </if>


turbo.:R 12-06-2007 12:25 AM

so does it work in firefox?

DieselMinded 01-24-2008 11:57 PM

I have Singnatures set to not show in PM's but the legend is still there how do i remove it

Ultimate Killer 02-02-2008 03:30 AM

Can you make it stay at the bottom of the post?

Ad1tya 02-02-2008 07:37 AM

Great little mod.

Is there any way to Round the edges?

tmiland 04-21-2008 09:56 AM

Howdy! :)

Great mod *installed*

I've been fiddelin with this for a few hours now, and as a firefox user it doesnt look quite as nice as it does in IE. Though, i found a way to atleast get the upper left, and bottom right corner rounded in firefox.
Use this:
Code:

<fieldset style="-moz-border-radius-topleft: 8px; -moz-border-radius-bottomright: 8px;">
instead of
Code:

<fieldset>
You can also use
Code:

-moz-border-radius: 8px;
to round all corners, but since there are two lines that meet in the upper right and bottom left corner, it isnt really rounded.

*edit*
Found a even better one to use:
Code:

border:1px solid #D0D0BF;padding:8px;-moz-border-radius:5px
Enjoy! :D

TRABZONLUKAPLAN 04-25-2008 06:31 PM

I will try this. Thanks

Baldilocks 04-26-2008 03:27 PM

Is there any way to make this work with the "Show sig only once per page" modification??

Nevermind..figured it out! :)

hohleweg 05-04-2008 08:45 PM

Hi
Thanks it works on 3.7 but i want delete the line
over the Sig: line.
Please look at the Picture

What must i do?
Thanks Joachim

Roms 06-05-2008 12:29 AM

Quote:

Originally Posted by hohleweg (Post 1508567)
Hi
Thanks it works on 3.7 but i want delete the line
over the Sig: line.
Please look at the Picture

What must i do?
Thanks Joachim

Please click install.

Remove this part of the code:
PHP Code:

<hr size="1" style="color:$stylevar[tborder_bgcolor]/> 

Thanks :)

hohleweg 06-05-2008 04:41 AM

thanks

dreads 06-08-2008 12:14 AM

sweet!
installed

Roms 06-20-2008 02:27 AM

Quote:

Originally Posted by dreads (Post 1543612)
sweet!
installed

Thanks, please click "mark as installed.


All times are GMT. The time now is 03:04 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01397 seconds
  • Memory Usage 1,826KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (9)bbcode_code_printable
  • (1)bbcode_html_printable
  • (2)bbcode_php_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete