
0
Solved
How to set the default infoPanel Width?
Is it possible to set the default infoPanel Width? That would be best if can make it remember the resized width.
Answer

Under review
The default width of the panel varies a bit with the available size of your browser's canvas.
Would you like to make it wider by default? What is your screen resolution (and pixel size of your browser window - if easy for you to find that out)?

Answer
Solved
Thanks for you reply.
I found a alternative way to set the default infoPanel Width.
Add $config['app']['ui']['custom_js_url'] = '/customizables/custom.js';
to /customizables/config.php
Then create /customizables/custom.js and add window.localStorage.setItem('fr-settings-infoPanelWidth','s%3A295');
to it.
Customer support service by UserEcho
Thanks for you reply.
I found a alternative way to set the default infoPanel Width.
Add
$config['app']['ui']['custom_js_url'] = '/customizables/custom.js';
to /customizables/config.phpThen create /customizables/custom.js and add
window.localStorage.setItem('fr-settings-infoPanelWidth','s%3A295');
to it.