Hi, assuming that you are using the latest CEGUI version, the taharez.scheme contains a line with the default font being used:
<Font Name="Commonwealth-10" Filename="Commonwealth-10.font" />
I just see that Rackle has replied, changing the Font of your listbox should be enough. You can make a font-file of your own as well, just open on of the existing ones for a sample. Their format is easy.
And as Rackle suggests, you can change the font with a line line this:
<Property Name="Font" Value="MyFont" /> --layout
setProperty("Font", "MyFont") -- code
Note that the property value is the font's name, not the filename! The name is defined in an xml tag in your .font file.
Good luck!
