Icons without text?

 From:  Michael Gibson
2708.2 In reply to 2708.1 
Hi Pilou,

> I don't remember if it's possible to have only icons
> without help text under?

There is not currently any checkbox type option for it, but it is possible to make that happen by editing one of the UI files with a text editor.

To do that, open up moi.css in a text editor like notepad. The moi.css file can be found in the \ui subfolder inside of MoI's main installation folder.

Add in the following to the bottom of moi.css:
code:
moi\:CommandButton moi\:Text
{
	display:none;
}

moi\:CommandMenuButton moi\:Text
{
	display:none;
}

moi\:CommandButton
{
	margin:3px;
}


With that in place, it will disable all text under command buttons in MoI.

But please note that I have not really set the UI up with this in mind, many pieces of the UI will be compressed and possibly awkward with this configuration, like several text labels may wrap to take multiple lines instead of a single line, etc...

- Michael

EDIT: updated it to add a slight spacing around buttons.