daveaglick / FluentBootstrap

Provides extensions, helper classes, model binding, and other goodies to help you use the Bootstrap CSS framework from .NET code.
http://www.fluentbootstrap.com
MIT License
200 stars 76 forks source link

Navbar Fixed #52

Closed gmreburn closed 8 years ago

gmreburn commented 8 years ago

The bootstrap navbar component can be fixed to the top or the bottom of the viewport with the class navbar-fixed-top and navbar-fixed-bottom.

Add support for fixed navbars.

See: http://getbootstrap.com/components/#navbar-fixed-top

daveaglick commented 8 years ago

See the .SetPosition(NavbarPosition) fluent method. Specifically, take a look at this example from the tests: https://github.com/daveaglick/FluentBootstrap/blob/develop/FluentBootstrap.Tests.Web/Views/Tests/Navbars.cshtml#L27

Does that do what you need or is it missing something?

gmreburn commented 8 years ago

That is what I was looking for. Thank you.

daveaglick commented 8 years ago

:+1: