thanks for the great tutorial, very straightforward!
@asfandyar_ali2 жыл бұрын
once again. very useful. thank you so much. keep up the good work.
@balazsszeibert1527 Жыл бұрын
thank you so much
@nikhilpal2112 жыл бұрын
thanks you so much
@codingyaar2 жыл бұрын
Happy to help! 🙂
@husssainkhan35702 жыл бұрын
subscribed🙃
@ahamedmohamed3702 жыл бұрын
thank you
@codingyaar2 жыл бұрын
Welcome!🙂
@generia28062 жыл бұрын
very useful... i could not figure out how to stop double action - hover and click !!!
@codingyaar2 жыл бұрын
You can remove the data-bs-toggle attribute for the dropdown and add it only on small screens using javascript.
@SergeLedig2 жыл бұрын
Yes but when using dropdown-menu-end this solution breaks the bootstrap class --bs-position:end; Result: the dropdown exits the page if the menu is aligned to the right. I haven't found a solution to this yet... You ?
@codingyaar2 жыл бұрын
It shouldn't break anything. But it will place it to the start(left) To which you can add: position: absolute; inset: 0px 0px auto auto; margin: 0px; transform: translate3d(0.296875px, 40px, 0px); along with the display block part, to place it at the end.