XF 2.3 How can I change the font size of the "Latest threads" widget context?

Solution
D
Try this
Less:
[data-widget-key="new_posts"],
[data-widget-key="latest_threads"] {
    .contentRow-main a {
        font-size: 20px;
    }
}
OK because there are a few widgets displaying similar data, you need to determine the widget key using the browser console. Once you know the 'key' you can adapt the following code:

Code:
[data-widget-key="whats_new_new_posts"] .structItem-title {
    font-size: 20px;
}

Change the font size to whatever you wish. Let me know if this works for you :)
 
Try this
Less:
[data-widget-key="new_posts"],
[data-widget-key="latest_threads"] {
    .contentRow-main a {
        font-size: 20px;
    }
}
 
Solution
Back
Top Bottom