I managed to get solution to it.
Just go to header.php file of your theme and search for body_class and check if under that the below code is there if it’s not add it.
<?php if ( function_exists( ‘wp_body_open’ ) ) { wp_body_open(); } else { do_action( ‘wp_body_open’ ); } ?>
Worked for me ??