Hi there, I have just updated my games with the latest Phaser 2.3, but it seem now my games will not horizontally aligned to Center like usual, it just stay left aligned. Vertical align has no problem though. Do anyone have problem like this with Phaser 2.3? My css in index.html: body { margin: 0; padding: 0; background-color: #1d4633; } canvas { padding-left:0; padding-right:0; margin-left:auto; margin-right:auto; display:block; width:100%; }My scaling and align code in boot.js: this.stage.backgroundColor = '#1d4633';this.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL;this.scale.pageAlignHorizontally = true;this.scale.pageAlignVertically = true;Any help will be greatly appreciated! Thanks.