Viewing 3 replies - 1 through 3 (of 3 total)
  • The problem is with jQuery. While your theme developer don’t fix the problem you can try add this code to your functions.php temporally.

    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');
    Naveenkumar C

    (@cnaveenkumar)

    update this

    .q_logo a {
    display: block;
    position: relative;
    visibility: hidden;
    }

    to in your stylesheet

    .q_logo a {
    display: block;
    position: relative;
    visibility: visible;
    }

    Thread Starter rrladmin

    (@rrladmin)

    Thanks so much emanweb, that worked great!

    Naveenkumar, can you show me where you found that CSS? I would like to make that change rather than loading an entire jquery library.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Logo not showing’ is closed to new replies.