I checked the URL provided, but couldn’t find any CSS with text-indent or padding indented.
Although it is not accurate, I have also compared it with the cache on the web, but I can not find any problems at the moment.
https://web.archive.org/web/20210416172249/https://www.labsrc.com/budget-load-balancing-with-mariadb-on-ubuntu/
If you tell me the element with the indentation, I will investigate again.
WordPress 5.9 update added core CSS
It has also been added to your site as style id = “global-styles-inline-css”.
In addition, if you are using the block editor, inline styles will be applied.
These inline styles include margin and so on, which can disrupt your website’s style.
I did not find any evidence of using the block editor on your site. So maybe you can get rid of the extra style.
Try Remove global-styles-inline-css
add_action( 'wp_enqueue_scripts', 'my_remove_global_styles' );
function my_remove_global_styles() {
wp_dequeue_style( 'global-styles' );
}
Thank you.
-
This reply was modified 2 years, 8 months ago by nobita.