If you want to make CSS changes for the admin panel. paste the below code in functions.php
of your child theme:
1 2 3 4 5 6 7 8 9 10 | // admin_head is a hook my_custom_fonts is a function we // are adding it to the hook add_action('admin_head', 'my_custom_fonts'); function my_custom_fonts() { echo '<style> #posts-filter table.posts{ table-layout:auto; } </style>'; } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.