Is there an editor plugin to change the font style in wordpress page / post?

Hi,

I would like to know if there is any plugins to upgrade the existing wordpress editor so that we can change the font styles when we are writing in the editor?

Any comments will be appreciated, thank you.

You can add a function to the functions.php file

add_action( 'admin_head-post.php', 'devpress_fix_html_editor_font' );
add_action( 'admin_head-post-new.php', 'devpress_fix_html_editor_font' );

function devpress_fix_html_editor_font() { ?>
    <style type="text/css">
        #editorcontainer #content, #wp_mce_fullscreen {
            font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
        }
    </style>
<?php }

Can be found here.

Thank you, but is this code only changes the font style in the editor?

What I need is to be able to let users select which font style to display in pages / posts. Any advices?

Give this tutorial a try.