Welcome Guest, Not a member yet? Register   Sign In
Installing Ckeditor
#7

Classic editor with default styles:

Code:
<html lang="en">

<head>
 <meta charset="utf-8">
 <meta name="robots" content="noindex, nofollow">
 <title>Classic editor with default styles</title>
 <script src="https://cdn.ckeditor.com/4.12.1/standard-all/ckeditor.js"></script>
</head>

<body>
 <textarea cols="80" id="editor1" name="editor1" rows="10" data-sample-short>&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href=&quot;https://ckeditor.com/&quot;&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 <script>
   CKEDITOR.replace('editor1', {
     height: 260,
     width: 700,
   });
 </script>
</body>

</html>

Classic editor with custom styles:

Code:
<html lang="en">

<head>
 <meta charset="utf-8">
 <meta name="robots" content="noindex, nofollow">
 <title>Classic editor with custom styles</title>
 <script src="https://cdn.ckeditor.com/4.12.1/standard-all/ckeditor.js"></script>
</head>

<body>
 <textarea cols="80" id="editor2" name="editor2" rows="10" data-sample-short>&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href=&quot;https://ckeditor.com/&quot;&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 <script>
   CKEDITOR.replace('editor2', {
     height: 260,
     /* Default CKEditor styles are included as well to avoid copying default styles. */
     contentsCss: [
       'http://cdn.ckeditor.com/4.12.1/full-all/contents.css',
       'https://ckeditor.com/docs/vendors/4.12.1/ckeditor/assets/css/classic.css'
     ]
   });
 </script>
</body>

</html>
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
Installing Ckeditor - by ronniebel - 08-16-2019, 09:13 PM
RE: Installing Ckeditor - by Avega Soft - 08-17-2019, 12:10 AM
RE: Installing Ckeditor - by ronniebel - 08-17-2019, 08:20 PM
RE: Installing Ckeditor - by Avega Soft - 08-17-2019, 08:28 PM
RE: Installing Ckeditor - by website - 08-17-2019, 02:28 PM
RE: Installing Ckeditor - by Wouter60 - 08-18-2019, 03:56 AM
RE: Installing Ckeditor - by InsiteFX - 08-18-2019, 04:23 AM
RE: Installing Ckeditor - by ronniebel - 08-19-2019, 12:52 PM



Theme © iAndrew 2016 - Forum software by © MyBB