Hi DesuDeus,
> Is it possible to modify MoI UI to change the browser width ?
> Or changing the browser font size to something smaller ?
Yeah you can do this by editing the BrowserPane.htm file in the \ui sub-folder.
The link Danny has above shows how to do it for V2 (add some more characters in to a <div> tag in there). For V3 it's slightly different - in V3 it's controlled by a width value in a style at the top of the file:
code:
<style>
body {
padding:0.3em 0.2em 0.5em 0.3em;
width:15em;
}
</style>
The width:15em; part is that controls the width - setting that to 20em for example will increase the width. (an 'em' is a unit based on the current font size).
You can also change the font to be smaller in the browser pane by adding a new style there, you'll need to add a second style to do that (because the body automatically gets the default font size applied directly to it), something like this:
code:
<style>
body {
padding:0.3em 0.2em 0.5em 0.3em;
width:15em;
}
moi\:SceneBrowser {
font-size:80%;
}
</style>
- Michael
|