Hi @fahimmurshed,
Thanks for your answer. I still need to figure it out. Is there anyway to do this in the database?
Regards.
You can modify the code of wp-content/plugins/contact-form-7/includes/controller.php file.
First remove the code of loading styles.css from wpcf7_do_enqueue_scripts function.
And then add following codes.
add_action( 'wp_footer', 'wpcf7_do_enqueue_style_to_footer');
function wpcf7_do_enqueue_style_to_footer() {
if ( wpcf7_load_css() ) {
wpcf7_enqueue_styles();
}
}
Let me know if it can help you.