DEMO
1. Туда, где будет текст вставляем это:
Code
<div class="cooltext"> <b class="ct-top">Ваш текст</b> <b class="ct-bot">Ваш текст</b> <b class="ct-contur">Ваш текст</b></div>
2. Панель управления --> Управление дизайном --> Страницы сайта, перед тегом </head> ставим это:
Code
<style type="text/css">
.cooltext {
position: relative;
height: 23px;
}
.ct-top,.ct-bot,.ct-contur {
font: bold 25px Tahoma;
display: inline-block;
position: absolute;
}
.ct-top {
color: #fe7373;
overflow: hidden;
height: 18px;
top: 0px;
left: 0px;
z-index: 999;
}
.ct-bot {
color: #ff0000;
z-index: 888;
}
.ct-contur {
top: 1px;
left: 1px;
color: #8e0101;
z-index: 777;
}
</style>