Идем в Таблица стилей (CSS) и ставим код в любое место:
Code
/* Стиль рамок и скрипт для форума by Muzie.Ru*/
.ramka {border:1px solid #ABD8F0; background:#f3faff; }
.hed_ramka {background:#E3F5FF; padding:5px;border-bottom:1px solid #ABD8F0;font-weight:bold;font-size:13px;font-family:tahoma;color:#3D6276;text-shadow:1px 1px 0px #fff;}
.text {padding:5px; font-family:tahoma;font-size:11px; }
.ramka_red {border:1px solid #f0abab; background:#fff3f3; }
.hed_ramka_red {background:#ffe3e3; padding:5px;border-bottom:1px solid #f0abab;font-weight:bold;font-size:13px;font-family:tahoma;
color:#763d3d;text-shadow:1px 1px 0px #fff;}
.text_red {padding:5px; font-family:tahoma;font-size:11px; }
.ramka_cep {border:1px solid #ccc; background:#f7f7f7; }
.hed_ramka_cep {background:#eaeaea; padding:5px;border-bottom:1px solid #ccc;font-weight:bold;font-size:13px;font-family:tahoma;
color:#555;text-shadow:1px 1px 0px #fff;}
.text_cep {padding:5px; font-family:tahoma;font-size:11px; }
.ramka_gre {border:1px solid #b5f0ab; background:#f4fff3; }
.hed_ramka_gre {background:#E3FFE7; padding:5px;border-bottom:1px solid #b5f0ab;font-weight:bold;font-size:13px;font-family:tahoma;
color:#41763d;text-shadow:1px 1px 0px #fff;}
.text_gre {padding:5px; font-family:tahoma;font-size:11px; }
/* Стиль рамок и скрипт для форума by Muzie.Ru*/
Идем в Общий вид страниц форума и ставим после $BODY$ код:
Code
<script type="text/javascript">
e=document.getElementsByTagName("TD");
for(k=0;k<e.length;k++) {
if(e[k].className=='posttdMessage') {
s=e[k].innerHTML;
while (s.indexOf('[sinram]') != -1) {
s=s.replace('[sinram]','<div class="ramka"><div class="hed_ramka">Синяя таблица</div><div class="text">'); s=s.replace('[/sinram]','</div></div>');
e[k].innerHTML=s;}}}
</script><script type="text/javascript">
e=document.getElementsByTagName("TD");
for(k=0;k<e.length;k++) {
if(e[k].className=='posttdMessage') {
s=e[k].innerHTML;
while (s.indexOf('[redram]') != -1) {
s=s.replace('[redram]','<div class="ramka_red"><div class="hed_ramka_red">Красная таблица</div><div class="text_red">'); s=s.replace('[/redram]','</div></div>');
e[k].innerHTML=s;}}}
</script><script type="text/javascript">
e=document.getElementsByTagName("TD");
for(k=0;k<e.length;k++) {
if(e[k].className=='posttdMessage') {
s=e[k].innerHTML;
while (s.indexOf('[greram]') != -1) {
s=s.replace('[greram]','<div class="ramka_gre"><div class="hed_ramka_gre">Зеленая таблица</div><div class="text_gre">'); s=s.replace('[/greram]','</div></div>');
e[k].innerHTML=s;}}}
</script><script type="text/javascript">
e=document.getElementsByTagName("TD");
for(k=0;k<e.length;k++) {
if(e[k].className=='posttdMessage') {
s=e[k].innerHTML;
while (s.indexOf('[serram]') != -1) {
s=s.replace('[serram]','<div class="ramka_cep"><div class="hed_ramka_cep">Серая таблица</div><div class="text_cep">'); s=s.replace('[/serram]','</div></div>');
e[k].innerHTML=s;}}}
</script>
Идем в Форум - Форма добавления сообщения и ставим после $BBCODES$:
Code
<input type="button" value="Синяя рамка" onclick="simpletag('sinram','','','message',''); return false;" class="codeButtons" title="Синяя рамка" name="sinram"/>
<input type="button" value="Серая рамка" onclick="simpletag('serram','','','message',''); return false;" class="codeButtons" title="Серая рамка" name="serram"/>
<input type="button" value="Красная рамка" onclick="simpletag('redram','','','message',''); return false;" class="codeButtons" title="Красная рамка" name="redram"/>
<input type="button" value="Зеленая рамка" onclick="simpletag('greram','','','message',''); return false;" class="codeButtons" title="Зеленая рамка" name="redram"/>