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 !
Cyberek wrote:Ill post this information to our devteam and will write back as soon as I'll get an answer.
#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;
}
#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;
}
dziudek wrote:Solution for this problem is following - please open the css/menu/menu.css file and please replace the following fragment:
[ ••• ]