Wed 30 Jan 2008
Netbeans’ help browser doesn’t react on font size settings (User Startup Settings ). This is an old issue which you can study here . Actually all to do is to override the default CSS settings in:
netbeans-6.0/ide8/docs/org/netbeans/modules/usersguide/ide.css
Download a workaround version ide.css.
I had to edit this file to fit my needs (on KDE, ubuntu):
body { font-size: 15pt; font-family: Arial, Helvetica, SansSerif, sans-serif; ...
To see the changes you do not need to restart the IDE or something like that. Just go to another help page.
Netbeans 6.5
Here you the appropriate .css file is ide10/docs/org/netbeans/modules/usersguide/ide.css .
An example for a possible adaptation:
body {font-size: 15pt; font-family: SansSerif, Arial, Helvetica, sans-serif; margin-left: 5; margin-right: 5; color: Black; background-color: White} p {font-size: 15pt; margin-top: 5; margin-bottom: 5} ....