I have an issue with my footer in single-post pages. My footer should look like

But when I open single post page it turns out to look like
.
When I inspected both footers I found out that any other page the css rules apply from js_composer.min.css but on single-post page you do not see it there.
Is there any way to add that to single-post?
I had the same problem but with Woocommerce pages.
This should work for you.
function js_composer_front_load() {
if(is_single()) {
wp_enqueue_style('js_composer_front');
}
}
add_action('wp_enqueue_scripts', 'js_composer_front_load');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With