The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
To-the-top button in postbit footer. Details »» | |||||||||||||||||||||||||||
This simple mod does what is says on the tin, it adds a Top button in the postbit footer using the vBulletin 4.0.2 css convention for mouseover buttons.
Note: This mod is NOT compatible with vBulletin 4.0.1 or earlier. This is a mod I've always used because, as simple as it may be, a Top button in the bottom right of each postbit, can dramatically speed up the navigation of your site. No more spinning that mouse wheel trying to get back to the menus. There are... 1x addition to the postbit.css template 1x addition to the posbit (and/or postbit_legacy) template 2x images to upload INSTRUCTIONS: 1x additions to he posbit.css template Go to.. Styles & Templates>Stlye Manager>your skin>edit templates>CSS templates>postbit.css ---------------------------------------------------------------------- Find (search for "multiquote"): HTML Code:
.postbitlegacy .postfoot .textcontrols a.multiquote, .postbit .postfoot .textcontrols a.multiquote { background: url({vb:stylevar imgdir_button}/multiquote-back_40b.png) no-repeat transparent {vb:stylevar left}; padding-{vb:stylevar left}: 20px; } .postbitlegacy .postfoot .textcontrols a.multiquote:hover, .postbit .postfoot .textcontrols a.multiquote:hover { background: url({vb:stylevar imgdir_button}/multiquote_40b-hover.png) no-repeat transparent {vb:stylevar left}; padding-{vb:stylevar left}: 20px; } HTML Code:
.postbitlegacy .postfoot .textcontrols a.tothetop, .postbit .postfoot .textcontrols a.tothetop { background: url({vb:stylevar imgdir_button}/tothetop_40b.png) no-repeat transparent {vb:stylevar left}; padding-{vb:stylevar left}: 20px; } .postbitlegacy .postfoot .textcontrols a.tothetop:hover, .postbit .postfoot .textcontrols a.tothetop:hover { background: url({vb:stylevar imgdir_button}/tothetop_40b-hover.png) no-repeat transparent {vb:stylevar left}; padding-{vb:stylevar left}: 20px; } Click "save". 1x addition to the posbit (and/or postbit_legacy) template: Now navigate to.. Styles & Templates>Stlye Manager>your skin>edit templates>postbit templates>postbit ---------------------------------------------------------------------- Find (search for "multiquote"): HTML Code:
<vb:if condition="$show['multiquote_post']"> <a class='multiquote' href="{vb:raw post.replylink}" rel="nofollow" onclick="return false;" id="mq_{vb:raw post.postid}"><img id="mq_image_{vb:raw post.postid}" src="{vb:stylevar imgdir_button}/trans_40b.png" alt="{vb:rawphrase multi_quote_this_message}" /> </a> </vb:if> HTML Code:
<!-- ////////start To-The-Top button in postbit////// --> <span class="seperator"> </span><a class='tothetop' href="{vb:raw relpath}#top" onclick="self.scrollTo(0, 0); return false;"><img src="{vb:raw vboptions.cleargifurl}" alt="...to the top" />{vb:rawphrase top}</a> <!-- ////////end To-The-Top button in postbit////// --> Click "save". 2x images to upload: FTP into your forum/images/buttons dir and upload these two attached images: ---------------------------------------------------------------------- tothetop_40b.png tothetop_40b-hover.png ---------------------------------------------------------------------- That's it. Download Now
Show Your Support
|
2 благодарности(ей) от: | ||
zascok |
Comments |
#52
|
||||
|
||||
..in Styles & Templates>Stlye Manager>your skin>edit templates>postbit templates>postbit search for "multiquote" ...then replace
Quote:
Quote:
|
#53
|
|||
|
|||
Must be Replace...? No put under this
<vb:if condition="$show['multiquote_post']"> <a class='multiquote' href="{vb:raw post.replylink}" rel="nofollow" onclick="return false;" id="mq_{vb:raw post.postid}"><img id="mq_image_{vb:raw post.postid}" src="{vb:stylevar imgdir_button}/trans_40b.png" alt="{vb:rawphrase multi_quote_this_message}" /> </a> </vb:if> |
#54
|
||||
|
||||
must be replace...if you put under dont work...
|
#55
|
|||
|
|||
It works but I lose another function (multiquote)...
Don't want that.... |
#56
|
|||
|
|||
got this working with vB4.1.4
Here's what I did. to be honest I didn't even try this hack first since everyone was saying it didn't work. I came here to get code since I recently updated and forgot to store it in a text document. Anyways, all I did was just matched a little code with some of the existing buttons like "multiquote" and "reply" etc.. In postbit.css Find : Code:
.postbitlegacy .postfoot .textcontrols a.multiquote, .postbit .postfoot .textcontrols a.multiquote { background: url({vb:stylevar imgdir_button}/multiquote-back_40b.png) no-repeat {vb:stylevar postbit_control_background} {vb:stylevar left}; padding: {vb:stylevar postbit_control_padding}; padding-{vb:stylevar left}: {vb:math {vb:stylevar postbit_control_padding}+20}; padding-bottom:1px; border: {vb:stylevar postbit_control_border}; } .postbitlegacy .postfoot .textcontrols a.multiquote:hover, .postbit .postfoot .textcontrols a.multiquote:hover { background: url({vb:stylevar imgdir_button}/multiquote_40b-hover.png) no-repeat {vb:stylevar postbit_control_hover_background} {vb:stylevar left}; } Code:
.postbitlegacy .postfoot .textcontrols a.tothetop, .postbit .postfoot .textcontrols a.tothetop { background: url({vb:stylevar imgdir_button}/tothetop_40b.png) no-repeat {vb:stylevar postbit_control_background} {vb:stylevar left}; padding: {vb:stylevar postbit_control_padding}; padding-{vb:stylevar left}: {vb:math {vb:stylevar postbit_control_padding}+20}; padding-bottom:1px; border: {vb:stylevar postbit_control_border}; } .postbitlegacy .postfoot .textcontrols a.tothetop:hover, .postbit .postfoot .textcontrols a.tothetop:hover { background: url({vb:stylevar imgdir_button}/tothetop_40b-hover.png) no-repeat transparent {vb:stylevar left}; } Find: Code:
<vb:if condition="$show['multiquote_post']"><span class="seperator"> </span></vb:if> </vb:if> <vb:if condition="$show['multiquote_post']"> <a class="multiquote" href="{vb:raw post.replylink}" rel="nofollow" onclick="return false;" id="mq_{vb:raw post.postid}"><img id="mq_image_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase multi_quote_this_message}" /> </a> </vb:if> Code:
<vb:if condition="$show['multiquote_post']"><span class="seperator"> </span></vb:if> </vb:if> <vb:if condition="$show['multiquote_post']"> <a class="multiquote" href="{vb:raw post.replylink}" rel="nofollow" onclick="return false;" id="mq_{vb:raw post.postid}"><img id="mq_image_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase multi_quote_this_message}" /> </a> <span class="seperator"> </span></vb:if> Code:
<a class='tothetop' href="{vb:raw relpath}#top" onclick="self.scrollTo(0, 0); return false;"><img src="{vb:raw vboptions.cleargifurl}" alt="...to the top" />{vb:rawphrase top}</a> |
3 благодарности(ей) от: | ||
gbechtel, Popa Andrei, spillage |
#57
|
|||
|
|||
I just used steeler7's code (above) on 4.1.8.
It didn't show for me until edits to both postbit_legacy and postbit where complete. The button shows and works fine, but the hover image does not show, only a blank space. There isn't any text message on hover either. Any thoughts? This mod is marked as supported, but trilOByte hasn't posted here for close to a year, despite him having been onsite as recent as Oct... have we been abandoned? |
#58
|
|||
|
|||
Hover image not showing issue solved;
I had edited the image to add some colour to it... when I saved it, the file extension was changed to uppercase (.PNG)... on changing it back to lowercase (.png) it worked. Still no hover text... shouldn't it show "...to the top"? |
#59
|
|||
|
|||
It's nice looking modification, but who can made changes to work it on 4.1.11?
|
#60
|
|||
|
|||
works fine on 4.1.11 PL 1
|
#61
|
|||
|
|||
nice one , thank you. Works 4.2 pl2. If only it could have a little smooth animation instead of jumping .....
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|