Fix Page Width

I am using MBM v8.3.2 with styled text. I would like to fix my page width at 600px & justify the text but can find no way of doing this.

I have opened the .mbm files in a editor but it is not an HTML format, so I can not use tables or divs/css.

I even tried choosing HTML from the drop list but there is still no way of viewing the HTML.

Am I missing something here?
 

stanbusk

Administrator
Staff member
When using the styled text format you can insert HTML code. You can for example insert a table. This is an example with a 600px table:

<table width="600" border="0"><tr><td>
Your text here...
</td></tr></table>

You can even use that table and also justify your text:

<table width="600" border="0"><tr><td><div align="justify">
Your text here...
</div></td></tr></table>
 
Top