Viewing 4 replies - 1 through 4 (of 4 total)
  • hi there, i’m having the very same menu trouble… it jumps out of the grid and then back in to its position whenever there’s a reload.

    did you manage to solve it?

    …or, does anyone else have a clue?

    Yeah im having the same issue. Any one know how to stop the top header from reloading and fading in each time you refresh/go to a new section? It gets kind of annoying after a while!

    Maybe its just me, but does anyone have a solution?

    Here is the site I’m working on. Runs on Tanzaku as well. LINK

    Hopefully someone has a solution 🙂 Cheers!

    I wish I could help you guys out but have no idea what you are talking about. haha. Could you explain a little more what the problem is you are having, and also provide a working like to your site.

    to eliminate the menu/header jump from left to right whenever the page reloads, add padding 0 to the #grid-wrapper class e.g.:

    #grid-wrapper {
    		margin: 0;
    		padding: 0;
    		padding-top: 1000px; /* Prevent flicker in grid area. Check header.php. */
    	}

    the header fadein/fadeout could be removed by commenting out these parts out of header.php:

    $(‘#header’).css(“visibility”, “hidden”);

    and:

    setTimeout(function() {
    $(‘#header’).hide().css(“visibility”, “visible”).fadeIn(500);
    }, 500);

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Menu problem with Tanzaku theme’ is closed to new replies.