Index: branches/roca_master_drupal6/www/sites/all/modules/render/plugins/sifr3.inc =================================================================== --- branches/roca_master_drupal6/www/sites/all/modules/render/plugins/sifr3.inc (revision 68) +++ branches/roca_master_drupal6/www/sites/all/modules/render/plugins/sifr3.inc (revision 89) @@ -32,5 +32,5 @@ 'dependencies' => array('sifr.js', 'sifr.css'), 'file_masks' => array('.+\.swf'), - 'properties' => array('font', 'color', 'linkcolor', 'hovercolor', 'backgroundcolor', 'letterspacing', 'wmode', 'texttransform', 'fontsize', 'fontweight', 'fontstyle', 'marginleft', 'marginright', 'textalign', 'textindent', 'display', 'opacity', 'leading', 'kerning', 'cursor', 'underline'), + 'properties' => array('font', 'color', 'linkcolor', 'hovercolor', 'backgroundcolor', 'letterspacing', 'wmode', 'texttransform', 'fontsize', 'linksize', 'fontweight', 'fontstyle', 'marginleft', 'marginright', 'textalign', 'textindent', 'display', 'opacity', 'leading', 'kerning', 'cursor', 'underline'), ); } @@ -186,4 +186,12 @@ '#size' => 12, '#default_value' => $edit['fontsize'], + ); + + $form['text']['linksize'] = array( + '#type' => 'textfield', + '#title' => t('Link Size'), + '#description' => t('A % value to adjust font size of links on replaced text. Examples: "100", "50"'), + '#size' => 12, + '#default_value' => $edit['linksize'], ); @@ -356,4 +364,5 @@ 'a' => array( 'text-decoration' => 'none', + 'font-size' => ($rule['linksize'] ? $rule['linksize'] : '100'), ), 'a:link' => array(