Right aligned menu items

1
Hi, I'm trying float:right; on the menu bar widget but the items are not aligned right.  Somebody has a quick fix for this? grtz   ******EDIT*****: I fixed it with css code : .alignedRight{        ul{             li{                 float:right;                }            }      }
asked
1 answers
1

Hi Lennart, you want all menu items on your mendix menu bar to be aligned on the right side of the screen? Adding "float:right;" to the .navbar-nav class does the trick, this be easily added using sass: you can check out this blog to see how to do this https://www.mxblog.nl/2016/03/using-sass-with-mendix/

answered