Quote from
luishp on September 9, 2024, 11:51 am
@asmat that's a bit strange.
App width and height are set in two special CSS classes.
- CSS classes automatically added to <body> and every page:
.neobody
.neopage
So you can rewrite them by doing this:
- Add a not visible Container to your Master Page
- Include a code similar to this one into the Container HTML code:
<style>
.neobody,.neopage{
width:[appWidth]px!important;
}
</style>
Whenever you change the [appWidth] value, the App width should change accordingly.
@asmat that's a bit strange.
App width and height are set in two special CSS classes.
- CSS classes automatically added to <body> and every page:
.neobody
.neopage
So you can rewrite them by doing this:
- Add a not visible Container to your Master Page
- Include a code similar to this one into the Container HTML code:
<style>
.neobody,.neopage{
width:[appWidth]px!important;
}
</style>
Whenever you change the [appWidth] value, the App width should change accordingly.
asmat has reacted to this post.