Module element set to display a menu - align the menu items to the right
Settings > General > Text Alignment: Right.
Then, edit the element, click on its tab "Advanced", scroll down to the field labeled "CSS", and insert the following:
.el-element li {
display: flex;
justify-content: flex-end;
}
- Hits: 3