The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Search results thread list - thread title wrap oddness.
This is on the default style, so I'm ruling out one of the myriad edits I made to my main style.
See here. The title of the third post down in the list is "Since "incoming" NGD's seem to be a thing lately..." On my forum list, when I shrink the browser the table row expands (gets taller) so that the text wraps. However in my new posts search result, the row doesn't grow. The text at the end of the thread title gets bumped below the title. See here: If you look at that same thread again, all you can see is ""Since "incoming" NGD's seem to be a", because the last two words get shoved under the thread title but the cell itself doesn't grow at all. Any idea what might cause this? I've checked a couple of other default vb4 sites and they don't seem to have the same issue, so it's something I did. I just have no idea what, heh. It doesn't happen in my forum list, only in the New Posts search result listing. |
#2
|
||||
|
||||
Got to your "search.css" template, and edit your "searchtitle" class to read:
Code:
.searchtitle { font-size:{vb:stylevar font.fontSize}{vb:stylevar font.units}; padding:6px 0 2px; /*height: {vb:math {vb:stylevar font.fontSize}{vb:stylevar font.units} * {vb:stylevar line_height}};*/ height: auto; overflow: hidden; } edit: I found a couple of other CSS tweaks are needed... Go to "threadlist.css" and locate: Code:
.threadbit .alt { background: {vb:stylevar threadbit_alt_background}; } Code:
.threadbit { background: {vb:stylevar threadbit_alt_background}; } Code:
.inner .author { margin-bottom: 5px !important; } |
Благодарность от: | ||
#3
|
|||
|
|||
I believe this is also achieved by going into stylevars then in search box, type "line-height" and it should bring it up under "common" then set height to "auto".
|
Благодарность от: | ||
#4
|
|||
|
|||
Thanks guys. That fixed the wrap, but now my thread stats cell doesn't quite make it to the bottom of the row in a search. I've been firebugging it and it looks like it might be threadstats.td, but I can't quite sort what to adjust.
This is my site, guest/guest for a login if anyone's more savvy with this and wouldn't mind taking a peek. --------------- Added [DATE]1427886889[/DATE] at [TIME]1427886889[/TIME] --------------- Also, if a mod could move this over to the graphics forum I'd appreciate it. (Sorry about that, not enough coffee.) |
#5
|
|||
|
|||
This is driving me bonkers, aaaagh!
I made the edits in MarkFL's post, which would do as a bandaid however it makes my replies/views box have the same background as the rest of the thread strip. I'd like to keep it the alt color. Setting the width to auto works for the wrap, but I still have the Ugly Box Of Doom. I'm looking at it in firebug, and around the default vB replies/views container there's a cell/box: However around mine, that doesn't seem to be there. This is the only wrap that I can get around that area. Looking at the HTML on the default skin: Code:
<div class="threadinfo" title="blah blah title"> <ul class="threadstats td alt" title=""> <li>Replies: 35 </li> <li>Views: 623</li> <li class="hidden">Rating0 / 5</li> </ul> Code:
<div class="threadinfo" title="blah blah title"> <ul class="threadstats td alt" title=""> <li> <font color="#000000">Replies:</font> <font color="#000000">35</font> </li> <li> <font color="#000000">Views:</font> <font color="#000000">623</font> </li> </li> <li class="hidden">Rating0 / 5</li> </ul> |
#6
|
||||
|
||||
Try adding the following selectors to "additional.css":
HTML Code:
.nonsticky { overflow: hidden; } .nonsticky .threadinfo, .nonsticky .threadstats, .nonsticky .threadlastpost, .nonsticky .threadpostedin { display: inline-block; padding-bottom: 64px; margin-bottom: -64px; } |
#7
|
|||
|
|||
That did it, thank you very much! The text is a little top-justified in the cell but I can certainly live with it. Cheers man, that was driving me crazy!
|
#8
|
||||
|
||||
Quote:
HTML Code:
.nonsticky .threadinfo, .nonsticky .threadstats, .nonsticky .threadlastpost, .nonsticky .threadpostedin { display: inline-block; padding-top: 6px; padding-bottom: 64px; margin-bottom: -64px; } HTML Code:
.searchtitle { padding: 0; } Also add this selector: HTML Code:
.inner .author { margin-bottom: 6px !important; } |
#9
|
|||
|
|||
And thank you once again!
|
#10
|
||||
|
||||
One more thing...to get your sticky threads to match the nonsticky threads you should add:
HTML Code:
.sticky .threadinfo, .sticky .threadstats, .sticky .threadlastpost, .sticky .threadpostedin { display: inline-block; padding-top: 6px; padding-bottom: 64px; margin-bottom: -64px; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|