fakruzaruret Justoverclock MikeJones
Some time ago I had the same doubt and @Pollux commented a very interesting CSS solution with which adapting it you can get the same result as in https://shoji.fueko.net/.
The @Pollux solution in question allows you to have links that allow you to directly display the dropdown menu when you click on them, actually what you are doing is hiding the text of the link itself and changing the content of the small down arrow of the FoF Links dropdown.
.item-link1 a, .item-link2 a {
display: none;
}
.item-link1 .fa-caret-down::before {
content: "Q & A";
}
.item-link2 .fa-caret-down::before {
content: "Legal Stuff";
}
#header-primary .fa-caret-down {
font-family: inherit;
font-size: 100%;
}
I adapted this solution for https://brickdose.com (you can see it live there) to have just the three dots and have them act as a dropdown button
.item-link18 a {
display: none;
}
.item-link18 .fa-caret-down::before {
font-family: "Font Awesome 5 Free";
content: "\f141";
font-size: 120%;
margin-left: 10px;
}