Skip to main content

Make Mobile Menu Footer Sticky

How can I make the footer navigation (the feed, spaces, user menu) on mobile sticky

Thomas Oates

I think this CSS will do it:

.fcom_scrolling-down .fcom_mobile_menu {
bottom: 0px;
}

Thanks. But it doesn't work here

Thomas Oates

AlabiΒ Are you wanting to make it sticky here on this site or on your own FluentCommunity site?

Sophia S

Thomas OatesΒ πŸ˜…πŸ˜…πŸ˜…

I like your question, thank you works for me

Thomas OatesΒ On my site. I used fluentSnippet CSS, it didn't work

Thomas Oates

AlabiΒ Might be an issue with FluentSnippet. I added it to the custom CSS setting in FluentCommunity and it works for me.

Maybe try adding !important like this:

.fcom_scrolling-down .fcom_mobile_menu {
bottom: 0px !important;
}

Sophia S

Thomas OatesΒ that's absolutely right, ever tried adding some CSS to FSnippets but never worked as well. Have also seen a few other people reporting about the same......

Maybe Shahjahan JewelΒ and the team need to do something about it

Thomas Oates

Sophia SΒ For my site, I used this example (https://github.com/WPManageNinja/fluent-community-docs/blob/master/code-snippets.md#add-custom-css-to-portal) to link to a separate CSS file so I can easily add FluentCommunity specific style settings there. It works well.