If you have several sections then in Swift in mobile view only a certain number will be visible because the
is fixed. This is so that the mobile nav bar stays visibile but it is annoying as you cannot scroll down to see all the section list.
This is easily solved.
Open the sylesheet and add the following lines to the bottom of the stylesheet but above
if using php minification:
Finally add the following to the javascript footer functions
When you click the hamburger the page will be scrollable, when you click again the mininav will be fixed.
Try it here: https://www.graphiczdev.co.uk/wish/index.html
Code:
div.header-section
This is easily solved.
Open the sylesheet and add the following lines to the bottom of the stylesheet but above
Code:
CSSDefinition;}
Code:
.your-extra-css { position:relative!Important; } #header-support-xs.your-more-css { display:none!Important; }
Code:
$(".wsdownmenu-animated-arrow").click (function() { $('.header-section').toggleClass('your-extra-css'); $('#header-support-xs').toggleClass('your-more-css'); });
Try it here: https://www.graphiczdev.co.uk/wish/index.html
Comment