Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #624534

    Hi there,

    Can you help me with two items!
    – the “to top arrow” does not go smoothly – just jumps to the top.
    – in the footer i want to have 4 sections but like this 1/4 – 1/4 – 2/4. How can i do it?

    Thanks!
    Cheers!
    Kyle

    #625433

    Hi Kyle,

    Are you using any minify plugins? If so try to disable them or all your active plugin to see if there is a conflict. Adding this code in the bottom of your functions.php might help as well:

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    Thanks,
    Rikard

    #625781

    Thanks Rikard for the quick response.

    We are not using minify plugins. So i added the code and that worked ;)

    Thanks a lot

    Cheers
    Kyle

    #626241

    Hi Kyle,

    Great, glad you got it working :-)

    Regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.