Block Font Size

Allows users to easily adjust the text size and line height for enitre text blocks.

Click on any text block, then on the 'control' menu icon on the left and you will see the 'Text size' option in the dropdown.

Code

<!DOCTYPE html>
<html>
    <head>
        <title>Redactor</title>
        <meta charset="utf-8">

        <!-- css -->
        <link rel="stylesheet" href="/your-folder/redactor.css" />
    </head>
    <body>
        <!-- element -->
        <textarea id="entry">...</textarea>

        <!-- js -->
        <script src="/your-folder/redactor.js"></script>
        <script src="/your-folder/plugins/blockfontsize/blockfontsize.js"></script>

        <!-- call -->
        <script>
        Redactor('#entry', {
            plugins: ['blockfontsize']
        });
        </script>
    </body>
</html>