Changing the font for 'continue' text
Grids
22 Aug 2015, 00:54When 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:32Try putting this in your game "start" script:
For general stuff about changing the interface, look at this thread.
viewtopic.php?f=18&t=5111
// 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:34Thanks for that.