Криво отображается форма добовления комментариев
Страницы: 1
Криво отображается форма добовления комментариев
Добрый вечер, подскажите как починить форму добавления комментариев:
http://indexum.ru/culture/kino/212-amanda-sayfred-spelas-s-rasselom-krou-i-snova-snimetsya-s-nim.html
Шаблон от более старой версии, чем сейчас стоит. Адаптируйте шаблон под актуальную версию дле
А если в сети нет версии для dle 10 чё делать тогда?
Откройте файл style/engine.css найдите и удалите:

Код
.editor textarea {
    font-family: Verdana;
    word-spacing: 0.1em;
    letter-spacing: 0;
    line-height: 1.5em;
    font-size: 11px;
    color:#000;
    background: #fff url("../images/fields.png") repeat-x;
    border: 0 none;
}

.editor input[type="text"] {
    padding: 2px;
    background: #fff url("../images/fields.png") repeat-x;
    border: 1px solid #bcc0c2;
}

.editor_button {
    float: left;
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
}

.editor_buttoncl {
    float: left;
    cursor: pointer;
    padding-left: 1px;
    padding-right: 1px;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}

.editbclose {
    float: right;
    cursor: pointer;
    display: none;
}

.editor_button select {
    font-size: 11px;
}

.editor_button img {
    margin: 0;
    padding: 0;
}

.editbclose img {
    margin: 0;
    padding: 0;
}

.editor_button_brk img {
    margin: 0;
    padding: 0;
}


Далее в этом же файле найдите:

Код
.xfields textarea, .xprofile textarea {
    width: 98%;
    height: 186px;
    margin: 0px 1px 0px 0px;
    padding: 0px;
}


Замените на:
Код
.xfields textarea, .xprofile textarea {
    height: 186px;
    margin: 0px 1px 0px 0px;
    padding: 0px;
}

Далее в этом же файле в самый конец добавьте:

Код
/*---BB Редактор---*/

.bb-pane { height: 1%; overflow: hidden; border: 1px solid #BBB; background-image: url("../bbcodes/bg.gif"); }
.bb-btn, .bb-sep { height: 25px; float: left; display: block; overflow: hidden; text-indent: -9999px; white-space: nowrap; }
.bb-sel { float: left; padding: 4px 2px 0 2px; }
.bb-sel select { font-size: 11px; }
.bb-sep { width: 5px; background-image: url("../bbcodes/brkspace.gif"); }
.bb-btn { cursor: pointer; width: 23px; }

#b_font { width: 118px;}
#b_size { width: 65px;}
#b_font select { padding: 0px;}
#b_size select { padding: 0px;}
#b_b { background-image: url("../bbcodes/b.gif"); }
#b_i { background-image: url("../bbcodes/i.gif"); }
#b_u { background-image: url("../bbcodes/u.gif"); }
#b_s { background-image: url("../bbcodes/s.gif"); }
#b_img { background-image: url("../bbcodes/image.gif"); }
#b_up { background-image: url("../bbcodes/upload.gif"); }
#b_emo { background-image: url("../bbcodes/emo.gif"); }
#b_url { background-image: url("../bbcodes/link.gif"); }
#b_leech { background-image: url("../bbcodes/leech.gif"); }
#b_mail { background-image: url("../bbcodes/email.gif"); }
#b_video { background-image: url("../bbcodes/mp.gif"); }
#b_audio { background-image: url("../bbcodes/mp3.gif"); }
#b_hide { background-image: url("../bbcodes/hide.gif"); }
#b_quote { background-image: url("../bbcodes/quote.gif"); }
#b_code { background-image: url("../bbcodes/code.gif"); }
#b_left { background-image: url("../bbcodes/l.gif"); }
#b_center { background-image: url("../bbcodes/c.gif"); }
#b_right { background-image: url("../bbcodes/r.gif"); }
#b_color { background-image: url("../bbcodes/color.gif"); }
#b_spoiler { background-image: url("../bbcodes/spoiler.gif"); }
#b_fla { background-image: url("../bbcodes/flash.gif"); }
#b_yt { background-image: url("../bbcodes/youtube.gif"); }
#b_tf { background-image: url("../bbcodes/typograf.gif"); }
#b_list { background-image: url("../bbcodes/list.gif"); }
#b_ol { background-image: url("../bbcodes/ol.gif"); }
#b_tnl { background-image: url("../bbcodes/translit.gif"); }
#b_br { background-image: url("../bbcodes/pbreak.gif"); }
#b_pl { background-image: url("../bbcodes/page.gif"); }

.bb-editor textarea { 
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
    padding: 2px; border: 1px solid #bcc0c2; width: 100%; background: #fff url("../images/fields.png") repeat-x;
}
.editorcomm .bb-editor { width: 465px;}
.editorcomm .bb-editor textarea { height: 156px; }

.clr {
    clear: both;
}

/*---Выделение текста и всплывающее окно (поделиться ссылкой)---*/
#marker-bar,
#txtselect_marker {
   display: block;
   visibility: hidden;
    position: absolute;
    z-index: 1200;
    opacity: 0;
    -webkit-transition: opacity .4s, visibility .1s linear .4s;
    -moz-transition: opacity .4s, visibility .1s linear .4s;
    -o-transition: opacity .4s, visibility .1s linear .4s;
    transition: opacity .4s, visibility .1s linear .4s;
}
#txtselect_marker {
    cursor: pointer;
    background:url(../dleimages/marker.png) -0px -0px no-repeat;
}

#txtselect_marker:hover {
        background-position: -0px -32px;
}

#marker-bar{
    border: 1px solid #ccc;
    border-radius: 15px;
    background: #fff;
    padding: 5px 10px;
    cursor: default;
    box-shadow: 0px 0px 4px #ccc;
}

#marker-bar.show {
   -webkit-transition: opacity .4s, visibility 0s;
   -moz-transition: opacity .4s, visibility 0s;
   -o-transition: opacity .4s, visibility 0s;
   transition: opacity .4s, visibility 0s;
   opacity: 1;
   visibility: visible;
}

#txtselect_marker.show {
        /* XXX make a common css fadeIn/fadeOut classes */
   visibility: visible;
   width: 32px;
   height: 32px;
   -webkit-transition: opacity .4s, visibility 0s;
   -moz-transition: opacity .4s, visibility 0s;
   -o-transition: opacity .4s, visibility 0s;
   transition: opacity .4s, visibility 0s;
   opacity: 1;
}

#marker-bar .masha-social,
#marker-bar .masha-marker{
   cursor: pointer;
   display: block;
   margin: 0 5px;
   float: left;
}

#marker-bar .masha-marker{
   line-height: 1em;
   color: #aaa;
   border-bottom: 1px dotted #aaa;
   margin-right: 10px;
}

#marker-bar .masha-marker:hover {
   color: #ea3e26;
   border-color: #ea3e26;
}

.user_selection, .user_selection_true {
   background: #c4f47d;
   padding: 2px 0;
}
.user_selection a.txtsel_close, .user_selection_true a.txtsel_close {
   display:none;
}
.user_selection .closewrap, .user_selection_true .closewrap {
   position: relative;
}
.user_selection.hover a.txtsel_close, .user_selection_true.hover a.txtsel_close {
   display: inline-block;
   position: absolute;
   top: -7px;
   left: -5px;
   width: 33px;
   height: 33px;
   background: url(../dleimages/closemarker.png) -0px -0px no-repeat;
}

.user_selection.hover a.txtsel_close:hover, .user_selection_true.hover a.txtsel_close:hover {
   background-position: -0px -33px;
}


#share-popup {
   background: #fff;
   border: 1px solid #aaa;
   border-radius: 5px;
   box-shadow: 0 0 5px rgba(0,0,0,0.5);
   position: absolute;
   width: 414px;
   display:none;
   z-index: 100;
   padding: 10px 0;
   opacity: 0;
   -webkit-transition: opacity .4s, visibility .1s linear .4s;
   -moz-transition: opacity .4s, visibility .1s linear .4s;
   -o-transition: opacity .4s, visibility .1s linear .4s;
   transition: opacity .4s, visibility .1s linear .4s;
}

#share-popup.show {
   display:block;
   opacity: 1;
   -webkit-transition: opacity .4s, visibility 0s;
   -moz-transition: opacity .4s, visibility 0s;
   -o-transition: opacity .4s, visibility 0s;
   transition: opacity .4s, visibility 0s;
   opacity: 1;
}

#share-popup .social {
   padding: 0 0 10px 17px;
   height: 40px;
}

#share-popup .social p {
   padding-bottom: 10px;
   margin: 0;
   font-weight: bold;
}

#share-popup .social ul {
   list-style: none;
   margin: 0;
   padding: 0;
}

#share-popup .social ul li {
   float: left;
   margin-right: 20px;
   padding-top: 2px;
   position: relative;
}

#share-popup .social ul a {
   text-decoration: none;
   font-size: 11px;
   display: inline-block;
   color: #aaa;
   padding-left: 25px;
}

#share-popup .social ul a:hover {
   text-decoration: underline;
   color: #ea3e26;
}

#share-popup .social a span{
   cursor: pointer;
   width: 20px;
   height: 20px;
   background: url(../dleimages/social-icons.png) 20px 20px no-repeat;
   position: absolute;
   left: 0;
   top: 0;
}

#share-popup .social .tw span{
   background-position: 0 -20px;
}

#share-popup .social .tw:hover span{
   background-position: 0 0;
}

#share-popup .social .fb span{
   background-position: -20px -20px;
}

#share-popup .social .fb:hover span {
   background-position: -20px 0;
}

#share-popup .social .vk span{
   background-position: -40px -20px;
}

#share-popup .social .vk:hover span {
   background-position: -40px 0;
}

#share-popup .social .gp span{
   background-position: -60px -20px;
}

#share-popup .social .gp:hover span {
   background-position: -60px 0;
}

#share-popup .link {
   clear: both;
   border-top: 1px solid #d9d9d9;
   padding: 10px 5px 0 10px;
   line-height: 1.2;
   overflow: hidden;
   margin: 0 7px;
}

#share-popup .link p {
   font-weight: bold;
   padding: 0 0 3px 0;
   margin: 0;
}

#share-popup .link span {
   color: #999;
   font-size: 10px;
   display: block;
   padding-top: 3px;
}

#share-popup .link a {
   display: block;
}
Страницы: 1
Похожие темы:
Читают тему (гостей: 1, пользователей: 0, из них скрытых: 0)
Новые темыОбъявленияСвободное общение
00:00 Как грамотно и эффективно монетизировать форум? 
23:55 Стоит ли добавлять сайт в Rambler топ 100? 
13:00 МТС разуверилась в своём заменителе YouTube 
20:34 Dao.AD: Монетизация и покупка Push/Pops/Inpage и Video трафика! 
17:13 Как правильно покупать ссылки для поддомена? 
14:22 Profit Pixels - In-House Форекс, Крипто, Трейдинг CPA Офферы | Еженедельные Выплаты | CPA до $950 
13:55 Ищу специалистов 
13:55 PonyBit.ru - обменный пункт PonyBit.ru (Понибит.ру) 
11:13 PAY2DAY.TOP - Покупка и продажа криптовалюты за рубли. 
04:13 Просто $0.04/IP 9PROXY.COM Резидентные прокси Неограниченная пропускная способность Уникальная политика замены Без чёрного списка 
02:37 local-pay.com - быстрый и надежный обменник криптовалюты Local-Pay 
22:23 BestX24 - быстрый и безопасный обменник криптовалют и электронных денежных средств 
21:47 Продам игровой форум! 
18:08 Прием платежей для HIGH RISK | Прием платежей без сайта 
23:53 С юмором по жизни! 
01:27 Точные прогнозы на футбол 
18:52 150+ хакерских поисковых систем и инструментов 
17:16 Китайский ИИ-ассистент DeepSeek начали запрещать в некоторых странах 
14:43 Осталось 3-5 месяцев до блокировки YouTube в России, — заявил Клименко 
22:21 Telegram не смог провести различие между требованиями автократических режимов и законными демократическими запросами 
22:19 Подтягиваем физкультурку