OK, I answered my own question on this for at least the Chromium and Firefox browsers:
Chromium - edit the application shortcut and add:
--force-device-scale-factor=2
Now when you start Chromium it will size correctly
Firefox ESRStep1: - Go to about:config in the Firefox URL Bar
- Find layout.css.devPixelsPerPx - it normally has a setting of -1.0 - change it to 2
Step 2:- Create a new folder in the profile directory called 'chrome' (you can find your profile directory by typing about:support in the firefox url bar)
- Go to that directory in the terminal and use you favourite command line editing tool to create a file called userChrome.css
- When editing that file add the following:
@namespace url("
http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
* {font-size: 18px !important;
}
- Save the file and exit from editing
- Go back to Firefox and back to about:config
- In the search box above the list, type or paste userprof
- Double-click the toolkit.legacyUserProfileCustomizations.stylesheets preference to switch the value from false to true.
Close Firefox and restart and it should now be sized correctly.