This is really a funny example that the reviewer sent to me.
Styling issue - http://envato.d.pr/g5qB/iVQRbbjg
How can I fix this
This is really a funny example that the reviewer sent to me.
Styling issue - http://envato.d.pr/g5qB/iVQRbbjg
How can I fix this
Who is the reviewer?
Lol, itâs Kailoon: http://themeforest.net/user/kailoon
I also got for the same reason
so how to fix that? we will fix it on our own or just wait for TGM developer to update it?
I added custom admin style sheet, with name âcustom_admin.cssâ having
div#setting-error-tgmpa {
display: block;
clear: both;
}
and put the code in functions.php
add_action( âwp_enqueue_scriptsâ, âmytheme_admin_cssâ );
function mytheme_admin_css(){
if( is_admin() ) {
wp_enqueue_style(
âmedia_uploadâ,
get_template_directory_uri()."/css/custom_admin.css",
false,
false,
âallâ
);
}
}
Thanks for sharing with us. But I guess should be admin_enqueue_scripts
instead of wp_enqueue_scripts
It was just a wrong class, fixed in develop branch on GitHub.
Thanks for sharing it
already fix on latest version