TheMasso Member Sep 23, 2024 #1 I want to change only the font size of "Latest Threads" widgets thread links.
Solution O O Old Nick Sep 23, 2024 Try this Less: [data-widget-key="new_posts"], [data-widget-key="latest_threads"] { .contentRow-main a { font-size: 20px; } }
Try this Less: [data-widget-key="new_posts"], [data-widget-key="latest_threads"] { .contentRow-main a { font-size: 20px; } }
Davyc Well-known member Sep 23, 2024 #2 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 Upvote 0 Downvote
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
O Old Nick Well-known member Sep 23, 2024 #4 What is the widget key of the widget you want to interact? Upvote 0 Downvote
O Old Nick Well-known member Sep 23, 2024 #6 Try this Less: [data-widget-key="new_posts"], [data-widget-key="latest_threads"] { .contentRow-main a { font-size: 20px; } } Upvote 0 Downvote Solution
Try this Less: [data-widget-key="new_posts"], [data-widget-key="latest_threads"] { .contentRow-main a { font-size: 20px; } }