Changing the font for 'continue' text

Grids
22 Aug 2015, 00:54
When I choose a web font it doesn't apply this to the text for things like 'continue'. These appear just with a regular default font. Any tips on how to change this.

The Pixie
22 Aug 2015, 08:32
Try putting this in your game "start" script:
// Change the colour to orange
JS.eval ("$('#txtCommandDiv a').css('color', 'orange');")
// Change the font to Berkshire Swash
JS.eval ("$('#txtCommandDiv a').css('font-family', 'Berkshire Swash');")


For general stuff about changing the interface, look at this thread.
viewtopic.php?f=18&t=5111

Grids
22 Aug 2015, 10:34
Thanks for that.