Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to create a left menu categories wise( more than one categories in left side) using bootstrap in asp.net
i am new in bootstrap when using bootstrap can any one help me, how to use left menu, which control in better
when i minimize the browser the left menu should be hide and display a small link when i click the link the
side menu should be display.
please help

thanks in advance
Posted

1 solution

There is a sidebar template you can try. It's easy to use and has the option to toggle it. It also toggles automatically if the browser window reaches a minimum size.

http://startbootstrap.com/template-overviews/simple-sidebar/[^]

I have used it for my own projects and will look like this:

XML
<div id="wrapper" class="toggled">
                <div id="sidebar-wrapper">
                <ul class="sidebar-nav">
                <li class="sidebar-brand">

                </li>
                <li>
                    <a href="#">Dashboard</a>
                </li>
                <li>
                    <a href="#">Shortcuts</a>
                </li>
                <li>
                    <a href="#">Overview</a>
                </li>
                <li>
                    <a href="#">Events</a>
                </li>
                <li>
                    <a href="#">About</a>
                </li>
                <li>
                    <a href="#">Services</a>
                </li>
                <li>
                    <a href="#">Contact</a>
                </li>
            </ul>
        </div>
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900