Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #322632

    Hi,

    Is it possible to display socket area above footer widget area?

    #323218

    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

    #324095

    Hi,
    Its working well. Thank you

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Footer socket’ is closed to new replies.