viper357 Well-known member Aug 8, 2017 #1 Hi, is it possible to change the colour of the grey text for the descriptions in the admin panel? I really struggle to read them. Thanks.
Hi, is it possible to change the colour of the grey text for the descriptions in the admin panel? I really struggle to read them. Thanks.
Arty Well-known member Aug 9, 2017 #2 First you need to enable debug mode. Add this to config.php Code: $config['debug'] = true; Then you'll see new tab in admin panel: development. Click that tab. Go to admin templates, find filter_list.css. In that template find Code: .FilterList h4 a dfn { font-size: 11px; color: @faintTextColor; } Change color value from @faintTextColor to something like #999 Then disable development mode by removing line you've added to config.php Be aware that it will reset every time you update forum, so you'll need to repeat these steps. Upvote 0 Downvote
First you need to enable debug mode. Add this to config.php Code: $config['debug'] = true; Then you'll see new tab in admin panel: development. Click that tab. Go to admin templates, find filter_list.css. In that template find Code: .FilterList h4 a dfn { font-size: 11px; color: @faintTextColor; } Change color value from @faintTextColor to something like #999 Then disable development mode by removing line you've added to config.php Be aware that it will reset every time you update forum, so you'll need to repeat these steps.
viper357 Well-known member Aug 9, 2017 #3 Thank you very much for that, appreciate it. Upvote 0 Downvote