Dears
Thanks for this great theme, how can i make the upper right menu (social, login & search menu) fixed, as its not stable while i scroll down (even in your demo).
Thank you
Yousef
#gk-right-top {
left: auto !important;
top: 0 !important;
width: 33.3333%;
}
teitbite wrote:Hi
Ok. I checked it in a different browser and looks like it's a Safari performance issue.
Try change the way this element is presented for website with this css added to override.css
- Code: Select all
#gk-right-top {
left: auto !important;
top: 0 !important;
width: 33.3333%;
}
#gk-right-top {
left: auto !important;
position: fixed;
right: 0 !important;
top: 0 !important;
width: 33.3333%;
}
teitbite wrote:Hi
Try a different approach maybe:
- Code: Select all
#gk-right-top {
left: auto !important;
position: fixed;
right: 0 !important;
top: 0 !important;
width: 33.3333%;
}