1. admin/sources/classes/editor/composite.php
найти:
Код:
$options['smilies'] = $this->fetchEmoticons( 20 );
меняем на
Код:
$options['smilies'] = $this->fetchEmoticons( 72 );
2. Админка -> Внешний вид -> Шаблон -> CSS -> ipb_ckeditor.css
найти (может отличаться, в зависимости от шаблона):
Код:
.ipsSmileyTray { text-align: center; overflow: auto; margin: 0px auto 0px auto; padding: 4px 24px 4px 24px; min-width: 600px; width: 75%; height: 32px; border: 1px solid #D5DDE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
Заменить на:
Код:
.ipsSmileyTray { text-align: center; overflow: auto; margin: 0px auto 0px auto; padding: 4px 24px 4px 24px; min-width: 600px; height: 70px; border: 1px solid #D5DDE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
Найти:
Код:
.ipsSmileyTray .ipsSmileyTray_next { background: transparent url({style_images_url}/editor/next.png) no-repeat; background-position: 0px 10px; display: inline-block; float: right; position: relative; right: -20px; width: 13px; height: 30px; cursor: pointer; }
Заменить на:
Код:
.ipsSmileyTray .ipsSmileyTray_next {
background: transparent url({style_images_url}/editor/next.png) no-repeat;
background-position: 0px 10px;
display: none;
float: right;
position: relative;
right: -20px;
width: 13px;
height: 30px;
cursor: pointer;
}