Skip to main content
Topic: Lock menu on scroll for Elkarte Light template (Read 2096 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Lock menu on scroll for Elkarte Light template

Hello,

I like the fixed menu used in Elkarte BeSocial version. (for fixed I mean that is locked in the upper and always visible even if you scroll down).
I wonder if there's a way to make the menu of Light template locked ?

thank you in advance
sorry for my bad english

Re: Lock menu on scroll for Elkarte Light template

Reply #1

I guess the same code will work on light as well:
Code: [Select]
#menu_nav {
background: #333;
background-image: linear-gradient(to bottom, #4d4f53 0%,#333 49%,#333 51%,#4d4f53 100%);
position: fixed;
top: 0;
z-index: 99;
width: 100%;
color: #eee;
line-height: 30px;
min-height: 35px;
padding: 0;
-webkit-backface-visibility: hidden;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
}

Plus remember to add to the
Code: [Select]
body {
a
Code: [Select]
	padding-top: 35px;
so that jumping on anchors will work properly.
Bugs creator.
Features destroyer.
Template killer.

Re: Lock menu on scroll for Elkarte Light template

Reply #2

thank you, that worked like a charm!
sorry for my bad english

 

Re: Lock menu on scroll for Elkarte Light template

Reply #3

Great! :D
Bugs creator.
Features destroyer.
Template killer.