Hi,
hm well yeah in sf-shortcodes.php you can find the array where it says
function sf_custom_mce_styles( $args ) {
so you could enhance
$style_formats = array (
array( 'title' => 'Impact Text', 'selector' => 'p', 'classes' => 'impact-text' ),
array( 'title' => 'Impact Text Large', 'selector' => 'p', 'classes' => 'impact-text-large' )
);
by your styling.
Then you would probably need to also enhance
'output' => array('h1,.impact-text,.impact-text-large'), // An array of CSS selectors to apply this font style to dynamically
'compiler' => array('h1,.impact-text,.impact-text-large'), // An array of CSS selectors to apply this font style to dynamically
in sf-options.php
and add the css to editor-style.css
I did not test that however but you can try it! 🙂