ilovekiwi Posted July 20, 2018 Share Posted July 20, 2018 Pretty obvious from the title I want the remove the 'shrinking' from the navbar. You can see below what I am talking about. b154804580e96a057dd869c6626bc261.mp4 Link to comment Share on other sites More sharing options...
1 Jeffrey Posted July 25, 2018 Share Posted July 25, 2018 Go into your theme and find this template: core -> global -> global -> js_theme Remove the following Javascript: {{if theme.feature_2}} var headerHeight = {theme="logoheight"}; var minHeaderHeight = {theme="ipsfocus_text"}; var heightElements = '.wDesktop a.logo'; $(window).scroll(function(){ var amountScrolled = $(window).scrollTop(); var maxScrollAmount = headerHeight - minHeaderHeight; var newHeight = headerHeight - amountScrolled; if((amountScrolled >= 0) && (amountScrolled <= maxScrollAmount)){ $(heightElements).css({ "height": newHeight + "px", "max-height": newHeight + "px", }); } else if($(window).scrollTop() > maxScrollAmount){ $(heightElements).css({ "height": minHeaderHeight + "px", "max-height": minHeaderHeight + "px", }); } }); {{endif}} Support Team - September 9th, 2017 - June 8, 2018 Junior Moderator - December 14th 2018 - November 16th, 2019 Designer - November 16th, 2019 - June 5th, 2020 Moderator - June 5th, 2020 - August 28th, 2020 Link to comment Share on other sites More sharing options...
0 ilovekiwi Posted July 26, 2018 Author Share Posted July 26, 2018 Thank you very much for your help! Link to comment Share on other sites More sharing options...
0 killshandra Posted July 26, 2018 Share Posted July 26, 2018 The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic. Link to comment Share on other sites More sharing options...
Question
ilovekiwi
Pretty obvious from the title I want the remove the 'shrinking' from the navbar. You can see below what I am talking about.
Link to comment
Share on other sites
3 answers to this question
Recommended Posts