Hi Mark. Sure, you can load the html and link the css sheet using a web page editor. You will get better results making a "wrapper" that emulates the roll20 editor. I believe there is a post somewhere on the forums... Your wrapper should also include links to the other 2 css files that get linked with the editor, base.css and app.css(editor.css). I do this using Dreamweaver. Here's my "wrapper" code. I can't recall how I downloaded the base.css and app.css. I'm sure there's a trick.(maybe use Chrome's inspect element and copy/paste) You may need to adjust some the settings to better match your setup. Cheers <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <link href="base.css" rel="stylesheet" type="text/css"> <link href="editor.css" rel="stylesheet" type="text/css"> <!-- Link your CSS file here --> <title></title> </head> <body> <div style="display: block; width: 100%; height: 100%; margin: 0 auto; position: fixed !important;"> <div style="display: block; width: 925px; height: 100%; overflow: auto;"> <div style="display: block; width: 100%; height: 100%; background-color: #FFF;"> <div id="root" style="padding-top:0px;"> <!-- BEGIN Character Sheet HTML -->
<!-- END Character Sheet HTML --> </div> </div> </div> </div> </body> </html>