The Arcive of vBulletin Modifications Site. |
|
Split replies/views like vb3 Details »»
|
|||||||||||||||||||||||||||||||||
This mod splits replies/views on threadbit like on a vb3 forum.
changelog: v1.0 initial release v1.1 updated the css code v1.2 updated the css code v1.3 updated the css code Two files are included in the zip-file:
Added a fix for new post search in what's new, caussed by the changes from split replies/views like vb3. Download Now
Screenshots
Show Your Support
|
|||||||||||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
Thanks for this and the other one!
![]() If you don't mind my asking, why did the Threads and Posts modification take more template edits? |
|
#3
|
||||
|
||||
|
There's more templates because threads and post are shown both on forumhome (index) and forumdisplay (category.).
Replies and views is only shown on forumdisplay (forum/subforum) |
|
#4
|
|||
|
|||
|
Any way to keep the alternate background along the whole Replies and Views columns like it was with the default Replies / Views instead of just on sticky threads?
I removed the threadbit alt code in additional.css that had the background as transparent, but doing that only filled part of the row for each thread with the alternate background. |
|
#5
|
||||
|
||||
|
sure, no problem
open additional.css find following: code: Code:
.threadbit .alt {
background:none;
}
code: Code:
.threadbit .alt {
background: url("images/gradients/grey-up.png") repeat-x scroll left bottom #F2F6F8;
}
|
|
#6
|
|||
|
|||
|
Quote:
Nothing personal against you. This is still a great thing overall, but it's just not for us.
|
|
#7
|
||||
|
||||
|
Quote:
Code:
if you change your mind, here's the code:
.threadbit .nonsticky, .threadbit .discussionrow {
background: url("images/gradients/grey-up.png") repeat-x scroll left bottom #F2F6F8;
}
|
|
#8
|
|||
|
|||
|
Quote:
![]() Think you could provide some screenshots of that for the reference? |
|
#9
|
||||
|
||||
|
If I understood correctly you want the gray section you see in the pic threadbit1 but then over the full lenght like in pic threadbit2
Attachment 145617 Attachment 145618 note: I used a different color to show what section is meant. with the original color it wold like the pic threadbit3. Attachment 145619 The code is following: Code:
.threadbit .alt {
background: none;
}
.threadbit .nonsticky, .threadbit .discussionrow {
background: url("images/gradients/grey-up.png") repeat-x scroll left bottom #F2F6F8;
}
|
|
#10
|
|||
|
|||
|
Thanks for the reply.
This is how it looks by default: ![]() With your changes, the style variable threadbit_alt_background only affected the Replies and Views columns containing sticky threads: ![]() The text being gone and borders not being there are not part of it, obviously. That's just the best I could do with Paint to show you since I already reverted the changes.
|
![]() |
|
|