Admin post table strange thing

[ad_1]

Bojan

(@briskwebservices)

@elbores

To change the CSS of the admin table list and make the text appear at the top as usual, you can use the following steps:

Locate the functions.php file in your WordPress theme directory.
Open the functions.php file in a text editor.
Add the following code snippet to the functions.php file:

function custom_admin_css() {
    echo '<style>
        .widefat td {
            vertical-align: top !important;
        }
    </style>';
}
add_action('admin_head', 'custom_admin_css');

Save the changes to the functions.php file and upload it back to your server.

The code above adds custom CSS to the admin section of your WordPress site using the admin_head action hook. It targets the .widefat td selector and sets the vertical-align property to top !important.

This should override the existing CSS and restore the text alignment to the top in the admin table list.

@briskwebservices

Working, many thanks! I don´t really know why it has changed to middle. But something related with theme update by sure. I have asked them too…

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer