• Resolved sjoerd89

    (@sjoerd89)


    Hi there,

    i was wondering if it is possible (currently have the free version) to change the site title to a logo header. Because i want the top to have a logo of my choice and under that the navigation. I do not like the header under the navigation.

    Next to that i want that logo with the navigation to be fixed so it stays on top when i scroll down the page. Is this possible with this theme without fixing to much in the PHP files?

    Thanks for your time,

    Sjoerd

Viewing 4 replies - 1 through 4 (of 4 total)
  • Baikare Sandip

    (@baikaresandeep007-1)

    Hi sjoerd89,

    For change the logo, just navigate to Admin menu > Appearance > Customization

    see here might be any option for logo.

    I think there is not any other way to fix it directly.
    #header should be a header navigation class or replace if any other.
    To fix header at top, just paste below code in js file:

    // Add fixed height on desktop view
            $(window).resize(checkWidth);
            function checkWidth() {
                var windowsize = $(window).width();
                return windowsize;
            }
        var windowsize = $(window).width();
        if (checkWidth() > 767) {
        	$(window).scroll(function(){
        	    var sticky = $('#header'),
        	        scroll = $(window).scrollTop();
    
        	    if (scroll >= 200 && windowsize > 767 ) sticky.addClass('fixed');
        	    else sticky.removeClass('fixed');
        	});
        }

    and this is in your theme style:

    #header.fixed {
      position: fixed;
    }
    Theme Author Out the Box

    (@outtheboxthemes)

    Hi @baikare.sandeep007, thanks for answering this.

    Hi @sjoerd89, there is a “sticky” header option in the premium version of the Panoramic theme if you would like to upgrade.

    Hope this helps!

    Baikare Sandip

    (@baikaresandeep007-1)

    Hi outtheboxthemes,
    Thanks for adding new functionality in theme.

    @sjoerd89, Glad that I could Help you.

    Regards,
    Baikare Sandeep

    Theme Author Out the Box

    (@outtheboxthemes)

    No problem!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing the Site title to a custom logo?’ is closed to new replies.