One-Page: Anchor scrolls to wrong position
- GK User
- Mon Oct 26, 2015 11:03 am
Hey guys,
I´m using the storefront-template for a site with One-Page-Layout. Unfortunately the anchors of the main menue scroll to the wrong position. The titles of the anchored modules get lost behind the fixed menue.
How can I change that?
Thank you!
I´m using the storefront-template for a site with One-Page-Layout. Unfortunately the anchors of the main menue scroll to the wrong position. The titles of the anchored modules get lost behind the fixed menue.
How can I change that?
Thank you!
-
- Fresh Boarder
- GK User
- Mon Oct 26, 2015 1:20 pm
Could you please post an url to your site?
-
- Moderator
- GK User
- Tue Oct 27, 2015 12:58 pm
Your site is password protected.
Please send me a PM with:
1. URL to your website
2. login and password of user with login privileges (please create one for me)
3. link to this thread
Please send me a PM with:
1. URL to your website
2. login and password of user with login privileges (please create one for me)
3. link to this thread
-
- Moderator
- GK User
- Thu Oct 29, 2015 11:39 am
Hi,
I´ve sent you the private message with the login. Could you please help me?
Thank you.
I´ve sent you the private message with the login. Could you please help me?
Thank you.
-
- Fresh Boarder
- GK User
- Sat Oct 31, 2015 1:47 pm
Please edit this file:
templates/gk_storefront/js/gk.scripts.js
and find this section:
and offset the scroll value with your header height:
templates/gk_storefront/js/gk.scripts.js
and find this section:
- Code: Select all
if(target.length && this.hash !== '#') {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top
}, 1000, 'swing', function () {
if(this.hash !== '#') {
window.location.hash = target.selector;
}
});
} else {
and offset the scroll value with your header height:
- Code: Select all
if(target.length && this.hash !== '#') {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top-133
}, 1000, 'swing', function () {
if(this.hash !== '#') {
window.location.hash = target.selector;
}
});
} else {
-
- Moderator
- GK User
- Mon Nov 02, 2015 10:48 am
Thank you. But the problem is still there. Now it scrolls to the right postion, but it flips back up again after a second..
-
- Fresh Boarder
- GK User
- Mon Nov 02, 2015 9:44 pm
I have checked your site and it seems to be working fine. Could you please post some info about os and browser (with version)?
-
- Moderator
- GK User
- Thu Nov 05, 2015 8:42 am
Ok, here you are.
OS: Windows 7
Browser: Mozilla Firefox 41.0.2
OS: Windows 7
Browser: Mozilla Firefox 41.0.2
-
- Fresh Boarder
- GK User
- Sat Nov 07, 2015 3:59 pm
I have checked your site with Windows 7 and Firefox 42.0 and I doesn't see any such behave.
-
- Moderator
- GK User
- Tue Nov 10, 2015 10:25 am
I´ve checked the issue again with Windows 7 an IE 11 and with Windows 7 an Firefox 42.0. But the problem is still there. If you click on "Profil", "Werte", "Beratung" in the menu, the page scrolls to the right anchor-position at first, so that you can read the title of the module like "Profil", "Werte" etc. But just after a second the page flips up a little bit, so that the title of the module hides behind the menu again. It must have something to do with the animation-effect, but I can´t find the solution.
Could you please try again and help me?
Thank you very much!
Could you please try again and help me?
Thank you very much!
-
- Fresh Boarder
- GK User
- Tue Nov 10, 2015 2:08 pm
Please verify if same problem happens on Chrome
-
- Moderator
- GK User
- Tue Nov 10, 2015 2:23 pm
Seems like a really strange bug, I'll report that to our devteam and let you know when I get an answer.
-
- Moderator
- GK User
- Thu Nov 12, 2015 11:34 am
Please send me a PM with:
1. URL to your website
2. login and password of user with admin/super-admin privileges (please create one for me)
3. ftp data (host, user, password)
4. link to this thread
1. URL to your website
2. login and password of user with admin/super-admin privileges (please create one for me)
3. ftp data (host, user, password)
4. link to this thread
-
- Moderator
- GK User
- Mon Nov 16, 2015 3:16 pm
You´ve got the message.
-
- Fresh Boarder
- GK User
- Fri Nov 20, 2015 2:53 pm
It took me some time to check this out, but it seems I have found a solution...
Replacing this code:
with:
seems to do the trick.
Replacing this code:
- Code: Select all
if(target.length && this.hash !== '#') {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top-133
}, 1000, 'swing', function () {
if(this.hash !== '#') {
window.location.hash = target.selector;
}
});
} else {
with:
- Code: Select all
if(target.length && this.hash !== '#') {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top-133
}, 1000, 'swing', function () {
if(this.hash !== '#') {
document.location.hash = target.selector;
}
});
} else {
seems to do the trick.
-
- Moderator
- GK User
- Fri Nov 20, 2015 2:55 pm
Ok, sorry, it doesn't :/ Let me try other solutions.
-
- Moderator
- GK User
- Fri Nov 20, 2015 3:03 pm
Ok, this code:
seems to fix the issue, but it is nasty workaround and it would be better to add margins around tagged elements. Please make some testing and if it works you can leave it as it is.
- Code: Select all
if(target.length && this.hash !== '#') {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top-133
}, 1000, 'swing', function () {
if(this.hash !== '#') {
history.pushState({}, '', target.selector);
}
});
} else {
seems to fix the issue, but it is nasty workaround and it would be better to add margins around tagged elements. Please make some testing and if it works you can leave it as it is.
-
- Moderator
- GK User
- Sat Nov 28, 2015 12:12 pm
Hi,
thank you very much. That works fine for most of the site. Iam ealy happy with that. But there is a little Problem left.
I.E: If you come from „Kontakt“ in the top nav menue and click on "Profil" in the main menue, the page still jumps to the wrong position. The headline is hidden behind the mainmenu again. Can you try to fix that, too?
Thank you.
thank you very much. That works fine for most of the site. Iam ealy happy with that. But there is a little Problem left.
I.E: If you come from „Kontakt“ in the top nav menue and click on "Profil" in the main menue, the page still jumps to the wrong position. The headline is hidden behind the mainmenu again. Can you try to fix that, too?
Thank you.
-
- Fresh Boarder
- GK User
- Mon Nov 30, 2015 6:33 pm
It cannot be changed - this is the consequence of sticky menu always visible and browser scrolling to selected anchor tag. Here, the only way would be to add paddings:
- Code: Select all
#gkTop1, #gkTop2, #gkTop3, #gkTop4, #gkTop5 {
padding: 129px 0 30px;
}
-
- Moderator
20 posts
• Page 1 of 1