Quote from
luishp on June 23, 2019, 6:25 am
Some versions ago we decided to center apps on screen by default but it's quite easy to change that.
Jut go to Project > Properties > Styles and add this code to position your app Top Left:
body{
right:auto;
bottom:auto;
}
If you want it just on Top Centered Horizontally just use:
body{
bottom:auto;
}
Of course, you can just do some variations to position the app wherever you want.
Top Right:
body{
bottom:auto;
left:auto;
}
Do you need any other positioning?
Some versions ago we decided to center apps on screen by default but it's quite easy to change that.
Jut go to Project > Properties > Styles and add this code to position your app Top Left:
body{
right:auto;
bottom:auto;
}
If you want it just on Top Centered Horizontally just use:
body{
bottom:auto;
}
Of course, you can just do some variations to position the app wherever you want.
Top Right:
body{
bottom:auto;
left:auto;
}
Do you need any other positioning?
Vadim has reacted to this post.