Copy link to clipboard
Copied
Hi all,
I want the menu to be collapsed if another menu is opened. Herer Criterion I to be closed if i click on Criterion II. Please help.
http://bhc.edu.in/naac/CRITERION-V/5.1.1-Scholarship-Freeship-Provided-Government.php#homeSubmenu
The issue was fixed.I want the side menu to be fixed and the scroll bars to be appeared. Kindly help.
thanks in advance.
By @Roopavathy
Replace 'sticky-top' with 'fixed-top' and add height: 100%; and overflow: scroll; to the #sidebar css:
<nav id="sidebar" class="fixed-top">
#sidebar {
height: 100%;
overflow: scroll;
}
Copy link to clipboard
Copied
See if this helps you.
https://getbootstrap.com/docs/4.0/components/collapse/
Copy link to clipboard
Copied
I tried. But it doesn't work.
Copy link to clipboard
Copied
I don't know what you tried, so can't comment. But the various solutions offered do work with Bootstrap 4.
Copy link to clipboard
Copied
The issue was fixed.I want the side menu to be fixed and the scroll bars to be appeared. Kindly help.
thanks in advance.
Copy link to clipboard
Copied
The issue was fixed.I want the side menu to be fixed and the scroll bars to be appeared. Kindly help.
thanks in advance.
By @Roopavathy
Replace 'sticky-top' with 'fixed-top' and add height: 100%; and overflow: scroll; to the #sidebar css:
<nav id="sidebar" class="fixed-top">
#sidebar {
height: 100%;
overflow: scroll;
}
Copy link to clipboard
Copied
Copy link to clipboard
Copied
It works perfectly good. Thank you.
Copy link to clipboard
Copied
You could use Bootstrap 5 with the off-canvas component. I have created a video on somthing similar to what you need albeit using a different IDE.
Copy link to clipboard
Copied
I am using bootstrap 4 only. Are there any possbilities to do the same here ?
Copy link to clipboard
Copied
Have a look here https://mdbootstrap.com/docs/standard/extended/sidebar/
Copy link to clipboard
Copied
Thanks Ben for your replies. I haven't worked Wappler so far. But came to know about this new feature. Thanks.