Stop the "main menu" apparition when loading a page

Start-up Joomla template with amazing CSS3 animated icons, price tables and parallax effect background.
Rate this topic: Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.3.50 out of 6 based on 2 vote(s)
GK User
Mon May 12, 2014 7:27 pm
Reply with quote
Report this post
Hello,

When a page is loaded the main menu appears on the page with a short animation.

How to disable the animation ?

Thanks a lot !
User avatar
Fresh Boarder

GK User
Mon May 12, 2014 8:22 pm
Reply with quote
Report this post
Could you please post an url to your site?
User avatar
Moderator

GK User
Mon May 12, 2014 9:31 pm
Reply with quote
Report this post
localhost ;--)

Sorry I just bought "Simplicity" today to start a new dev'.
It's a fresh install of "gk_simplicity_quickstart_J!3.zip". no mod, no change.

I made a small video to explain :
http://94.23.36.22/test/2014-05-12_simplicity_menu.mov

Thanks for your help !
User avatar
Fresh Boarder

GK User
Mon May 12, 2014 10:00 pm
Reply with quote
Report this post
.... and after more tests this animation seems only visible with Internet Explorer. (noting with Firefox, Safari, Chrome)
User avatar
Fresh Boarder

GK User
Tue May 13, 2014 3:46 pm
Reply with quote
Report this post
You already did some changes and to detect why this animation fires I would need to access your site.
Perhaps you could post it somewhere live?
User avatar
Moderator

GK User
Tue May 13, 2014 9:45 pm
Reply with quote
Report this post
It's the same thing on your live Simplicity demo site here :
http://demo.gavick.com/joomla25/simplic ... typography

I use Windows 8 with IE 11.
User avatar
Fresh Boarder

GK User
Tue May 13, 2014 9:56 pm
Reply with quote
Report this post
I made again a small video of what I see on your live site :
http://94.23.36.22/test/2014-05-13_simplicity_menu.mov
User avatar
Fresh Boarder

GK User
Thu May 15, 2014 3:49 pm
Reply with quote
Report this post
... any ideas ?
Image
User avatar
Fresh Boarder

GK User
Thu May 15, 2014 3:59 pm
Reply with quote
Report this post
Ill post this information to our devteam and will write back as soon as I'll get an answer.
User avatar
Moderator

GK User
Wed Jun 11, 2014 7:56 pm
Reply with quote
Report this post
News ? :unsure:
Cyberek wrote:Ill post this information to our devteam and will write back as soon as I'll get an answer.
User avatar
Fresh Boarder

GK User
Thu Jun 19, 2014 9:38 am
Reply with quote
Report this post
Still waiting.
User avatar
Moderator

GK User
Fri Jun 27, 2014 1:55 pm
Reply with quote
Report this post
Would this have something to do with the data-delay within the gk.script.js?

I am just not quite sure how that would affect the menu on the header in the homepage if these times were changed in anyway.. then again... js isn't my strong point. :S
User avatar
Fresh Boarder

GK User
Sat Jun 28, 2014 12:08 pm
Reply with quote
Report this post
Solution for this problem is following - please open the css/menu/menu.css file and please replace the following fragment:

Code: Select all
#gkMenuWrap {
   background: #fff;
   -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .26);
   -moz-box-shadow: 0 0 6px rgba(0, 0, 0, .26);
   box-shadow: 0 0 6px rgba(0, 0, 0, .26);
   height: 70px;
   left: 0;
   position: fixed;
   -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;
   top: -100px;
   width: 100%;
   z-index: 1001;
}


with:

Code: Select all
#gkMenuWrap {
   background: #fff;
   -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .26);
   -moz-box-shadow: 0 0 6px rgba(0, 0, 0, .26);
   box-shadow: 0 0 6px rgba(0, 0, 0, .26);
   height: 70px;
   left: 0;
   position: fixed;
   top: -100px;
   width: 100%;
   z-index: 1001;
}
.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;
}
User avatar
Administrator

GK User
Wed Jul 23, 2014 2:44 am
Reply with quote
Report this post
dziudek wrote:Solution for this problem is following - please open the css/menu/menu.css file and please replace the following fragment:
[ ••• ]

Working fine !
Thanks a lot !
User avatar
Fresh Boarder


cron