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

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 :)
 
Back
Top Bottom