Reputation: 355
Is there an easy way to edit or remove the navigation bar at the top of ASP.NET applications that use Twitter Bootstrap?
The "Register" and "Log in" links need to be removed and the "Application Name" needs to be updated but I'm not quite sure where, in Visual Studio, I can update that info. CSS file?
It's a one page web app so technically it doesn't even need the navigation bar at the top so if there is a way to remove it -- and that's easier than editing it -- then could you explain how to do that?
Not sure what the recommended course of action is in terms of editing and keeping it versus just removing it. Thoughts?
Upvotes: 1
Views: 10336
Reputation: 1
go to Solution Explorer/ click on Site Master You will see the header and footer there you can delete or change the content
Upvotes: 0
Reputation: 160
You should comment/remove or edit this block in _Layout.cshtml:
<div class="navbar navbar-inverse navbar-fixed-top">
Upvotes: 6