Support » Theme: Hemingway » Making Navigation Sticky

  • Hello Anders,

    Great theme. I am testing Hemingway theme in my local environment, and trying to make the navigation sticky as suggested in this support threads.

    It works great except for some blog contents (eg. contents with Syntax highlighter plugin code) as shown (below), which scrolls OVER. Likewise, the footer widget section also scrolls over.

    /* Return early if Site Logo is not available.
    * First function checks if Jetpack is installed, if not, it will check if standalone Site Logo plugin is present.*/
    function yourtheme_the_site_logo() {
        if ( function_exists( 'jetpack_the_site_logo' ) ) {
            return jetpack_the_site_logo();
        } else if ( function_exists( 'the_site_logo' ) ) {
            return the_site_logo();
        } else {
            return;
    }}

    Any suggestions to fix this problem! With many thanks.

  • The topic ‘Making Navigation Sticky’ is closed to new replies.