Выглядеть это будет примерно так:

Установка:
В файл стиля .css добавить классы
Код: Выделить всё
table.postit
{
background-color: #fff;
color: #404040;
table-layout: fixed;
width: 250px;
font-size: 14px;
float: right;
margin-left: 10px;
border: 1px #ac7900 solid;
}
.postitheadline
{
background-color: #ffe57b;
color: #404040;
padding-left: 6px;
font-weight: bold;
font-size: 14px;
border-bottom: 1px solid #ac7900;
}
.postitcontent
{
background-color: #fff;
color: #404040;
font-size: 12px;
padding: 8px;
}
В админке прописываем bbcode:
Использование BBCode:
Код: Выделить всё
[postit={TEXT1}]{TEXT2}[/postit]
Замена HTML:
Код: Выделить всё
<table class="postit" cellspacing="0">
<tr>
<td class="postitheadline">{TEXT1}</td>
</tr>
<tr>
<td class="postitcontent">
<p>
{TEXT2}
</p>
</td>
</tr>
</table>
Подсказка:
Код: Выделить всё
Заметка в тексте [postit=Заголовок заметки]Текст заметки[/postit]