Modification of the forum view to display longer thread titles?

  • Thread starter Thread starter Grilando
  • Start date Start date
G

Grilando

Guest
Does anyone have any idea how I can move the front view further to the left so that longer titles are displayed?


I have tried to illustrate this graphically.
NORMAL
Front1.PNG

Planned Modification

Front2.png


Personally, I find it strange that there is so much space in the middle and so little space on the far right for the thread titles.
Does anyone know why this was done this way and what disadvantages my desired changes could have, e.g., I would like to know if there are any negative effects.
 
That can all be controlled in the css. by DEFAULT xenforo does not fix this issue.
 
You can put this in your EXTRA.LESS and edit it to your liking for the CSS
CSS:
.node-extra {
    display: table-cell;
    vertical-align: middle;
    width: 500px;
    padding: 10px;
    font-size: 13px;
}
 
Width 500px is most likely to much, but you can play with it.
 
You can put this in your EXTRA.LESS and edit it to your liking for the CSS
CSS:
.node-extra {
    display: table-cell;
    vertical-align: middle;
    width: 500px;
    padding: 10px;
    font-size: 13px;
}
Thank you for the quick, professional help. It met my expectations exactly and also fixed the problem. (y)
 
This modification has caused a problem when viewing the site on mobile devices. Can anyone help me fix it?

Normal Desktop (
All OK)
Testing 1.PNG

Simulated mobile view in the browser (Problem)
Testing 2 (Mobile View).PNG

Tablet View (Problem)
Testing 2 (Mobile View) Slightly wider.PNG

Does anyone have any idea how to fix this error in the responsive view?
Thanks in advance
 
Back
Top Bottom