Hi, I created a HTML help with Robo8 with the fixed style that works, so you can create it when your really, really, really want it. As far as I could find out, RoboHelp doesn't use xhtml transitional but html 4.01 frameset as the DTD. This means that IE (7 and 8) will work in quirks mode so it won't render your style correct. To correct this, I decompiled the HTML help file with Microsoft's HTML help workshop. Then I replaced the frameset doctype with the strict doctype and recompiled the project, and now it works. This is all manual labour and has the following complications: - If you use framesets, you can't change their DTD, otherwise they'll break (or shoud break ;-), it's still Microsoft IE ) - You cannot use any form of inline styling in your project, you have to style everything by CSS. (This is the preferred way of working anyway...)+ - You'll need to rebuilt the hhp file for HTML help workshop, or come up with a workaround to use Robo's hhp. You can use it, but you don't want to use the source files. So yes, you can get it to work in HTML help, but no, you probably don't want this kind of workaround ;-). I don't know if there's any way to control the DTD on output, so any HTML help guru's out there, let me know. My advice, 1. stick with Webhelp 2. Abandon the idea of try Rick's suggestion. Greet, Willam PS: I added a working example but it may take some time before you can download it.
... View more