Friday, April 12, 2013

Set Heigth / Width of CKEditor



<script type="text/javascript">
        CKEDITOR.config.width = 810;
        CKEDITOR.config.height = 120;
        CKEDITOR.config.contentsCss = '/css/yourstyle.css';
    </script>

No comments:

Post a Comment

Complete Authentication System in ASP.NET Core using JWT

JWT (JSON Web Token) authentication is widely used for securing APIs in modern applications. In this article, we will build a complete authe...