Hi there,
only on one page of my website there is an issue with the X Pro Footer.
Under the footer there is an area like a 40px margin of the footer but I cannot detect it with chrome dev tools.
Thanks in advance
Hi there,
only on one page of my website there is an issue with the X Pro Footer.
Under the footer there is an area like a 40px margin of the footer but I cannot detect it with chrome dev tools.
Thanks in advance
Hello,
Thanks for using our theme!
First of all, don`t post your credentials outside a secure note. I have added it inside it.
I have checked your link and I did not find any issue. Can you send to us a screenshot?
Thank for getting back to me.
Find the screenshot attached.
I’m using a hd resolution desktop screen 1920x1080
Hi,
It’s your facebook code that is causing the issue. It shouldn’t be added in Custom JS.
I went ahead and removed it.
To add it, add the code below in your child theme’s functions.php file.
function add_fb_code() { ?>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/de_DE/sdk.js#xfbml=1&version=v2.10&appId=116681289077695";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<?php
}
add_action( 'wp_footer', 'add_fb_code' );
Hope that helps.
Thank you very much Paul!
You’re welcome.