Version: 2.00, by BCP Hung
Developer Last Online: Jan 2019
Category: Show Thread Enhancements -
Version: 4.x.x
Rating:
Released: 05-31-2011
Last Update: Never
Installs: 10
Template Edits
Code Changes Translations
No support by the author.
About this modificaion :
Right, reducing the length of the page for the long messages in postbit & postbit_legacy. In your forum, many members have written long message (maybe up to 10,000 characters), made that webpage is longer, more viewers will be offended because they have to slide the screen to see it. You can limit the number of characters, however, why do you do that ? Let your members write unlimited words. And, you do not have to worry about the length of the webpage.
Additional, you can reduce space between message content and signature !
Install :
First Step : add new css in additional.css (Edit Templates -> CSS Templates).
Paste following code into bottom of additional.css template (or anywhere in that template) :
Code:
/* Make a shorter message in postbit_legacy */
.g_short {
min-height: auto !important;
max-height: 350px; /* Custom for your */
overflow-x: hidden;
overflow-y: auto;
padding-right: 10px;
text-align: justify;
margin-bottom: 0 !important;
}
/* move up signature */
.postbitlegacy .after_content {
clear: both !important;
}
Second Step : edit in postbit.css (Edit Templates -> CSS Templates) :
Find this code :
/*post bit*/
.postbitlegacy .after_content {
clear: right !important;
}
...
and
...
.postbitlegacy .postrow.has_after_content {
padding-bottom: 0em !important;
}
Third Step : edit in postbit & postbit_legacy template (Edit Templates -> Postbit Templates) :
The code you will do all same in these templates. Find this code :
So, in essence, this mod adds a browser like sliding bar within a post, for some designated post character count? Therefore, it keeps the reader within the size of postbit, so they scroll inside of the post?
I already use this mod to pull the bottom of the postbit bar up tighter and it works well, so will this mod interfere with it?
Finally, I can be dangerous playing around with code, mucking things up. Is this reversible if it doesn't look right on out forums, our if out members don't like it and want it gone?
So, in essence, this mod adds a browser like sliding bar within a post, for some designated post character count? Therefore, it keeps the reader within the size of postbit, so they scroll inside of the post?
Yeah, this is what you think ! I want to make it different, easy for viewer, they do not want to move anymore in that page !
Quote:
Originally Posted by BadgerDog
I already use this mod to pull the bottom of the postbit bar up tighter and it works well, so will this mod interfere with it?
Finally, I can be dangerous playing around with code, mucking things up. Is this reversible if it doesn't look right on out forums, our if out members don't like it and want it gone?
I did refer to some code in that article, I supplemented so that it can work properly with my modification.
If you do not like it, you can remove css code I added, not necessary to remove the postbit (postbit_legacy) template.