Is there a way to center links?

When @ryanjamurphy suggests the class: MOC that is a suggestion for a class name, not the ‘real’ MOC (you just need to find a name not incompatible with existing ones, e.g. center-menu).

You can try this:

<span class="center-menu">[[000 Master Index]] ○○○ [[100 Personal Index]] ○○○ [[200 Daily Index]]</span>

Then create a CSS snippet like this:

.center-menu {
  display: block;
  text-align: center;
}
2 Likes