Is the JS Toolbar in the Add on bundle fixed to the top of the screen like on the socialize template or does it scroll up off the screen like on jomsocial.com. Will the toolbar in the add on bundle accomodate pinch and zoom? The toolbar on the socialize template pinch and zoom as the same as the rest of the screen and thus doesn't work properly if it is enabled.
a Guestthe position is not be fixed, same like on this site, if you wanna make it fixed you can ask the customization on forum, pinch and zoom is depending your template, to enable it you need to apply the viewport meta tag, read more information from here stackoverflow.com/questions/12392761/how-to-enable…9 years ago
StephenI simply just edit the header position in the CSS of my template and set the position to 'fixed' ... you will also need to set z-index ... here's what I did using the GavickTheme Music State ...
JS Toolbar module is compatible with helix 3 framework? 9 years ago
#gkHeaderMod {
width: 100%;
position: fixed;
z-index: 10;
}
and then placed the JS toolbar in that position ... voila! sticky toolbar. and the page content scrolls behind it. Hope that helps. 9 years ago