XF 2.2 How to set spacing of elements in thread list?

oldford

Active member
How can I edit the width or spacing of the elements shown below with red arrows? As I narrow my browser window these elements take up too much width and the thread title just gets skinnier and skinnier until the right side widgets finally drop down below the list of threads.

Screenshot 2021-09-23 221253.webp
 
Hello,

Seems to be a custom style, isn't it ?
there must be something in extra.less that is doing this.

You have to play with node-main, node-stats, node-extra and @media (min-width: @xf-responsiveMedium) to fix this.
 
It's sort of a custom style. Not a purchased one, but one I'm messing around with myself. Mostly it's just color changes, but I've also wrapped the forum in an HTML table to give me header and left side banner ads to match my site.

Here's a link to my test forum: https://classicbroncos.com/xenforotest/index.php

But there isn't anything in extra.less that's causing it, because I can delete all my custom CSS from extra.less and the same issue happens.

I was able to narrow those elements by adding this to my extra.less

Code:
.structItem-cell.structItem-cell--meta {
    width: 100px;
}
.structItem-cell.structItem-cell--latest {
    width: 120px;
    text-align: right;
}
 
Top Bottom