Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
iptables-save > tmp.save
sed -i 's/AAA(рандомное число)AAA/AAAA(нужное число)AAA/g' tmp.save
iptables-restore < tmp.save
https://jsfiddle.net/y0u/50833bmm/
Bootstrap 4 has a class dropdown-menu-right
that needs to be added to the dropdown-menu
.
In your case this is not enough. You now have the following menu structure:
<nav class="navbar">
...
<div class="navbar-collapse">
<ul class="navbar ml-auto">
<li>...</li>
</ul>
<div class="user-actions">
<div class="dropdown">
...
</div>
</div>
</div>
</nav>
<nav class="navbar">
...
<div class="navbar-collapse">
<ul class="navbar mr-auto">
<li>...</li>
</ul>
<ul class="navbar mr-auto user-actions">
<li class="dropdown">
...
</li>
</ul>
</div>
</nav>
.navbar-nav
..navbar-nav for a full-height and lightweight navigation (including support for dropdowns).— https://getbootstrap.com/docs/4.0/components/navba...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question