Hi,
Is it possible to display socket area above footer widget area?
Hey zibaloon2!
You can try adding following code to Quick CSS in Enfold theme options under General Styling tab
#footer { padding: 0; }
then add following code to Functions.php file in Appearance > Editor
function add_custom_socket(){
?>
<script>
jQuery(window).load(function(){
jQuery('#socket').prependTo('#footer');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_socket');
If that does not help, you are going to need to adjust Footer.php file in Appearance > Editor
Regards,
Yigit
Hi,
Its working well. Thank you