Menu animation and mobile problem
Start-up Joomla template with amazing CSS3 animated icons, price tables and parallax effect background.
Rate this topic: 1.00 out of 6 based on 1 vote(s)
- GK User
- Sun Dec 06, 2015 9:12 pm
- Reply with quote
- Report this post
After quickstart installation, menu animation cannot been displayed. Menu has also problems with mobile devices.
-
- Fresh Boarder
- GK User
- Sun Dec 06, 2015 9:28 pm
- Reply with quote
- Report this post
Could you please be more specific?
Could you please post an url to your site?
Could you please post an url to your site?
-
- Moderator
- GK User
- Sun Dec 06, 2015 10:34 pm
- Reply with quote
- Report this post
Site url is http://mastorantza.com/. The menu when scrolling, appears without effect. Also when scrolling on mobile devices, menu has displaying issues.
-
- Fresh Boarder
- GK User
- Mon Dec 07, 2015 11:10 am
- Reply with quote
- Report this post
Animation was removed in current template version - it was causing some display problems on mobile devices (iOS).
-
- Moderator
- GK User
- Mon Dec 07, 2015 1:32 pm
- Reply with quote
- Report this post
The main menu has already display problems on iOS and andriod without any effect.
-
- Fresh Boarder
- GK User
- Mon Dec 07, 2015 7:47 pm
- Reply with quote
- Report this post
Menu is flickering while scrolling. You can access my url from a mobile device so to see exactly what happens. In the simplicity demo page, this does not happen.
-
- Fresh Boarder
- GK User
- Mon Dec 07, 2015 9:59 pm
- Reply with quote
- Report this post
You might try to use this code in override.css:
and removing this part
from templates/gk_simplicity/js/gk.scripts.js file
- Code: Select all
.imageBg #gkMenuWrap {
-webkit-transition: top .2s ease-out;
-moz-transition: top .2s ease-out;
-ms-transition: top .2s ease-out;
-o-transition: top .2s ease-out;
transition: top .2s ease-out;
}
#gkMenuWrap {
position: fixed;
top: -100px;
}
#gkMenuWrap.active {
top: 0;
}
and removing this part
- Code: Select all
// Fix for iOS devices with iOS >= 8.0
var menuWrap = jQuery('#gkMenuWrap');
if(menuWrap.length) {
jQuery(window).on('scroll', function(e) {
if(menuWrap.hasClass('active')) {
menuWrap.css('top', jQuery(window).scrollTop());
} else {
menuWrap.css('top', '-100px');
}
});
}
from templates/gk_simplicity/js/gk.scripts.js file
-
- Moderator
- GK User
- Sun Dec 13, 2015 6:56 pm
- Reply with quote
- Report this post
Hello again. With that modification i cannot see the menu at all when i scroll down the page. Is it possible to choose another template or can you fix that problem?
-
- Fresh Boarder
- GK User
- Mon Dec 14, 2015 5:32 pm
- Reply with quote
- Report this post
I was trying to check what was wrong but your site points to an empty folder.
-
- Moderator
- GK User
- Sat Jul 09, 2016 2:16 pm
- Reply with quote
- Report this post
i have the same problem today
-
- Junior Boarder
11 posts
• Page 1 of 1