XF 1.5 Change the grey admin panel font colour?

viper357

Well-known member
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.

screenshot-www.marineaquariumsa.com-2017-08-08-20-27-07.webp
 
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.
 
Top Bottom