5

I'm in the process of creating .chm files and was curious to know if these options are available?

benbants
  • 590
  • 7
  • 30
  • What tool do you use to generate CHM files? You may add a tag like e.g. html-help-workshop to your question or describe when asking. – help-info.de May 13 '17 at 07:23

1 Answers1

4

Of course you can use CSS. JavaScript not in all cases. See HTMLHelp - Linking.

Make sure your design.css is inside you project level structure and added to the [FILES] section of your HHP project file. You can open this *.hhp file with e.g. Notepad++ to add files. If the files are listed in the [FILES] section the compiler includes them to the CHM file.

[FILES] 
welcome.htm 
design.css 
First_Steps\download.htm 
First_Steps\starting_program.htm 
How_to_extend\extend_menu.htm 
How_to_extend\power_function.htm 
images\gui_screenshot.jpg
help-info.de
  • 6,695
  • 16
  • 39
  • 41