Soft Reject by TMGPA Plugin.

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 :frowning:

Who is the reviewer?

Lol, it’s Kailoon: http://themeforest.net/user/kailoon :cry:

I also got for the same reason :smiley:

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