The font size module allows users to change the font size of the site they are viewing. This is useful for creating 508 accessible websites.

The font size module adds a block which has two buttons, one for a larger text size and one for a smaller or normal text size. Javascript is used to load generic stylesheets that work with most themes and templates.

You can

For more information, read the configuration and customization handbook Fontsize page

', array('%block-admin' => url('admin/block'))); } } /** * Implementation of hook_menu() */ function fontsize_menu() { drupal_set_html_head(''."\n". ''."\n". ''); } /** * Implementation of hook_block() */ function fontsize_block($op = 'list', $delta = 0) { if ($op == 'list') { $blocks[0]['info'] = 'Change text size'; return $blocks; } elseif ($op == 'view') { switch($delta) { case 0: $block['subject'] = t('Change text size'); $block['content'] = theme('links', array('A', 'A'), ' '); return $block; } } } ?>