Posted 27 апреля, 20231 yr comment_192840 Hi. In this short tutorial, I will describe how to set the default font name and size (and optionally color) in CKEditor on IPS Community Suite. To set the default font, log in to ACP and go to the Appearance tab, then Themes. Edit the HTML and CSS of your theme and paste the following JS before the closing </body> tag. <script> if(typeof CKEDITOR !='undefined'){ CKEDITOR.addCss(".cke_editable{cursor:text; font-size: 20px; font-family: Georgia; color:#27ae60 !important}"); CKEDITOR.config.font_defaultLabel='Georgia'; CKEDITOR.config.fontSize_defaultLabel='20px'; } </script> After applying the above code, the default font in CKEditor will be Georgia, with a size of 20 pixels, colored red. To remove text coloring, remove the color:#27ae60 value from the above code. The original content of the guide: https://invisioncommunity.com/forums/topic/471001-default-font-and-text-size/ Привет. В этом кратком руководстве я опишу, как установить имя и размер шрифта по умолчанию (и, возможно, цвет) в CKEditor в IPS Community Suite. Чтобы установить шрифт по умолчанию, войдите в ACP и перейдите на вкладку «Внешний вид», затем «Темы». Отредактируйте HTML и CSS своей темы и вставьте следующий код JS перед закрывающим тегом </body>. <script> if(typeof CKEDITOR !='undefined'){ CKEDITOR.addCss(".cke_editable{cursor:text; font-size: 20px; font-family: Georgia; color:#27ae60 !important}"); CKEDITOR.config.font_defaultLabel='Georgia'; CKEDITOR.config.fontSize_defaultLabel='20px'; } </script> После применения приведенного выше кода шрифтом по умолчанию в CKEditor будет шрифт Georgia размером 20 пикселей красного цвета. Чтобы убрать цвет текста, удалите значение color:#27ae60 из приведенного выше кода. Оригинальное содержание руководства: https://invisioncommunity.com/forums/topic/471001-default-font-and-text-size/ Link to comment https://ipbmafia.ru/topic/25582-default-font-and-text-size/ Share on other sites Больше вариантов
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.