• Without making changes, I checked my site today and the logo is not showing up. I’ve looked at header.php and viewed the page source on the page and I can’t see why it is not showing up. Could someone please help me out and look into the problem? Site is

    renaissancelogan.com

    Thanks in advance for your help! I am new to this.

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

    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.