XF 2.2 Making font sizes bigger

Anatoliy

Well-known member
So I want my members to have an option to select the font size that is better for their eyes. So I renamed xF default style into 'Small', and added 3 more styles: Normal, Big, and Huge, increasing font sizes in each (+3). It works just perfectly on mobile, but with PC view I have a problem.

Where can I make the width of the "Forum Titles" column smaller, so the other columns would be shifted to the left?

1 (1).webp
 
Solution
node-extra: width is hard set to 280px (that's the width of the last posters block), so in extra.less, try:

Code:
.node-extra {
    width: 320px !important;
}

320px is just an example, change to suit your needs.
Top Bottom