Menu Scrolling Down while scrolling page

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Mar 12, 2013 11:57 am
Reply with quote
Report this post
Dear Team,

Thanks for your help for all problems, thanks for excellent work.

Please can you suggest us how we can find Menu-bar as you have on your site, (where is Listed Signup, Help Social icons), As its functioning when i am scrolling down to long page its scroll down too :)

Thanks
User avatar
Expert Boarder

GK User
Tue Mar 12, 2013 2:04 pm
Reply with quote
Report this post
Try using following css code in your override.css.

Code: Select all
#gkPageTop { position: fixed; }
#gkBannerTop { padding: 63px 0 18px; }


See you around...
User avatar
Platinum Boarder

GK User
Tue Mar 12, 2013 2:18 pm
Reply with quote
Report this post
Dear

Thanks for your prompt reply,

Its not effecting as is your site is effecting,

Thanks
User avatar
Expert Boarder

GK User
Tue Mar 12, 2013 2:20 pm
Reply with quote
Report this post
Please post your website link so I can check, see you around...
User avatar
Platinum Boarder

GK User
Tue Mar 12, 2013 2:23 pm
Reply with quote
Report this post
Hi Thanks

Sent you PM.

regards
User avatar
Expert Boarder

GK User
Tue Mar 12, 2013 2:29 pm
Reply with quote
Report this post
In your override.css you are overriding my code again with below css :) See you have #gkPageTop twice.

Code: Select all
#gkPageTop {
    position: fixed;
}
#gkBannerTop {
    padding: 63px 0 18px;
}
#gkPageTop {
    -moz-box-sizing: border-box;
    background: none repeat scroll 0 0 #666666 !important;
    min-height: 75px;
    position: relative;
    z-index: 999;
}

Replace above code with below and it should work, or remove position: relative; from second part of #gkPageTop
Code: Select all
#gkBannerTop {
    padding: 63px 0 18px;
}
#gkPageTop {
    -moz-box-sizing: border-box;
    background: none repeat scroll 0 0 #666666 !important;
    min-height: 75px;
    position: fixed;
    z-index: 999;
}

Also add below code as you are not using banner position so we need to push content down.
Code: Select all
#gkPageContent { padding-top: 85px; }


See you around...
User avatar
Platinum Boarder

GK User
Tue Mar 12, 2013 2:41 pm
Reply with quote
Report this post
Working fine now thanks Champ :)
User avatar
Expert Boarder

GK User
Tue Mar 12, 2013 2:45 pm
Reply with quote
Report this post
No problem at all, see you around...
User avatar
Platinum Boarder


cron