[Dropdown] Change direction of Dropdown menu
See original GitHub issueI’m using Semantic-UI and Angular for developing a web app. Following to Semantic-UI documentation about dropdown, I created the following button:
<div class="ui dropdown button">
<div class="text">Menu</div>
<i class="dropdown icon"></i>
<div class="menu">
<a class="item" (click)="onClickSuItem(m)" *ngFor="let m of menu"> <i class="icon {{m.icon}}"></i>{{m.name}}</a>
</div>
</div>
I would like to change the direction of the menu, and set it on the left, instead of right. Do you know how can I reach that?
Could be a good idea to have a direction
/orientation
option?
Here is a Plunker.
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Changing the direction of a Bootstrap dropdown
Simply add one more class .navbar .nav > li > .dropdown-menu.dropdown-menu-fixed:after, .navbar .nav > li > .dropdown-menu ...
Read more >Bootstrap Change Dropdown Menu Direction Example - Tutlane
Bootstrap change dropdown menu directions example. In bootstrap we can change the direction of dropdown menu to left, right, etc.
Read more >Changing Drop Down Menu Direction - Theme by Puro
Hi,. We've noticed that when we change the drop down menu direction (https://purothemes.com/documentation/ultra-theme/menu-locations/), ...
Read more >Dropdowns - Bootstrap
Menu alignment. By default, a dropdown menu is automatically positioned 100% from the top and along the left side of its parent. Add...
Read more >Semantic-UI Dropdown Menu Direction Variation
There are different variations of dropdowns based on menu direction and the way it shows up. You can add directions to the dropdown...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Are there any updates on this issue? I’d love this feature too.
@Banandrew As I said before that solution wasn’t I looking for. It should be like Floating appearance, it shows menu oriented to left, but I need one button instead of two.