Чтобы создать рамку вокруг ссылки, надо проделать следующее.
1. Открыть шаблон
postbit_legacy , найти:
PHP код:
<div id="post_message_{vb:raw post.postid}">
Заменить этим:
PHP код:
<!-- message -->
<div class="link_post">
<div id="post_message_{vb:raw post.postid}">
</div><!-- / message -->
и далее, чтобы перед [COLOR="rgb(0, 255, 255)"]
attachments [/COLOR]был div (как показано ниже):
PHP код:
</div>
<!-- / attachments -->
2. Открыть шаблон additional.css и в самый низ добавить:\
PHP код:
.link_post a {
-moz-border-radius:6px;
-webkit-border-radius:6px;
border:1px solid #2b62a0;
border-radius:6px;
color:#004fdf;
display:inline-block;
margin:3px 0;
padding:3px 7px;
}
.link_post a:hover {
border: 1px solid #FF6600;
color: #FF6600; text-decoration: none;
}