Min and Default are swapped
-
Lines 18 – 19 of plugin v0.7
const DEFAULT_SIZE = WP_FONTSIZE_DEFAULT; const MIN_SIZE = WP_FONTSIZE_DEFAULT;
In order to have min / default operate properly based on wp-config.php defined parameters I had to set it as follows:
define('WP_FONTSIZE_DEFAULT', 1); define('WP_FONTSIZE_MIN', 3);
- The topic ‘Min and Default are swapped’ is closed to new replies.