This topic is locked
[SOLVED]

sticky mobile menu

10/12/2022 7:11:07 AM
PHPRunner General questions
P
ppradhan@live.com author

Is it possible to have mobile menu like https://bubble.io/ ?
I mean, menu for mobile to be sticky and use Menu together with hamberger icon. If anyone has already adopted such menu please help me how to do this tweek.

with regards.

Sergey Kornilov admin 10/12/2022

Could you provide some screenshots that explain what exactly you need to achieve?

P
ppradhan@live.com author 10/12/2022

Preview below:

img alt

Sergey Kornilov admin 10/12/2022

What exactly is different from PHPRunners mobile menu?

P
ppradhan@live.com author 10/13/2022

Dear Admin, the menu icon has Menu and handburger Icon together, and the navbar is sticky. If it is simple enough to achieve this, please guide me.

mbintex 10/13/2022

With a little CSS you get it sticky:

.navbar.navbar-default {
background-image: none;
position: fixed;
z-index: 10;
width: 100%;

For

.r-grid

you need an additional margin-top of 100px or so to get the data part below your sticky menu.

P
ppradhan@live.com author 10/13/2022

@mbintex10 many thanks bro, worked with charm!.