Bootstrap horizontal dropdown-menu? has some sample codes to alter the bootstrap dropdown menu in to a horizontal one, but i'd like to keep both for special use.
The core of turning dropdown menu to horizontal menu is adding
.open> ul {
display: inline-flex !important;
}
Therefore i tried to change it to
.open> ul.dropdown-menu-A {
display: inline-flex !important;
}
So only the Ul tags having dropwdown-menu-A within would be horizontal.
But unfortunately the above method do not solve my problem. It's still either all horizontal one or standard one.