Скрыть объявление
ВАШИ ПРАВА ОГРАНИЧЕНЫ!

Зарегистрируйтесь на форуме, чтобы стать полноценным участником сообщества!

Вопрос? Модуль форумы

Тема в разделе "Вопросы- ответы", создана пользователем Bayko, 6 окт 2022.

06.10.22 в 02:31
07.10.22 в 18:35
5
909
0
  1. TopicStarter Overlay
    Bayko

    Bayko Бывалый

    Регистрация:
    30 июл 2019
    Сообщения:
    110
    Лучших ответов:
    0
    Рейтинги:
    +5 / 1 / -0
    Добрый вечер друзья!
    Есть ли легкие модули для создание форума или обсуждение, которые работает на dle 15 и выше?
    Есть модуль очень похожий "простой модуль средствами DLE" сслыка https://dle-news.ru/modules/1763-prostoj-forum-sredstvami-dle.html , но на дле 15,2 и выше не работает!
    Есть ли кто-то, кто сможет подгоняет этот модуль на новую версию dle?
     
  2. byroot

    Забанен

    Регистрация:
    10 окт 2015
    Сообщения:
    12.295
    Лучших ответов:
    54
    Рейтинги:
    +5.206 / 74 / -0
  3. TopicStarter Overlay
    Bayko

    Bayko Бывалый

    Регистрация:
    30 июл 2019
    Сообщения:
    110
    Лучших ответов:
    0
    Рейтинги:
    +5 / 1 / -0
    Спасибо вам! но мне этот модуль не подходит, так как много функций не нужен.
    хотел попросить сможете подгонять этот модуль до 15,2 если будет время?
    https://dle-news.ru/modules/1763-prostoj-forum-sredstvami-dle.html
     
  4. byroot

    Забанен

    Регистрация:
    10 окт 2015
    Сообщения:
    12.295
    Лучших ответов:
    54
    Рейтинги:
    +5.206 / 74 / -0
    загрузить полностью архив через систему плагинов DLE.
    инструкция по установке в комментарии будет после установки плагина.
    2022-10-07_12-28-30.png
    стили форума из DEMO форума.
    Код:
    /* Стили форума */
    
    table.forum_cats {
        width: 100%;
        margin-top: 10px;
    }
    
    table.forum_cats tr {
        border-bottom: 1px solid #ebebeb;
    }
    
    table.forum_cats tr:last-of-type {
        border-bottom: none;
    }
    
    table.forum_cats td {
        padding: 10px;
    }
    
    table.forum_cats tbody td {
        vertical-align: top;
    }
    
    table.forum_cats thead {
        background-color: #f8f8f8;
    }
    
    table.forum_cats tbody div {
        font-size: 0.9em;
        color: #7b7b7b;
    }
    
    table.forum_cats .forum_stat {
        color: #404040;
        max-width: 150px;
    }
    
    table.forum_cats td>a {
        font-size: 1.2em;
    
    
    }
    
    table.forum_cats a {
    
        text-decoration: underline;
    }
    
    
    
    .new_theme_btn {
        margin: 0 10px 10px 0;
    }
    
    .title-withline>h1, .title-withline>div {
        margin-bottom: 30px;
        margin-top: 0;
        font-family: 'Rubik', sans-serif;
        font-weight: 600;
        font-size: 2em;
        position: relative;
    }
    .title-withline>h1::before, .title-withline>div::before {
        position: absolute;
        content: "";
        left: 0;
        bottom: -10px;
        height: 2px;
        width: 60px;
        background: #67AF50;
    }
    .padding-15 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .margin-15 {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .non-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .main_info a {
        text-decoration: underline !important;
    }
    
    .main_info h4 {
        margin: 15px 0 0 0;
        font-weight: normal;
    }
    
    .main_info li {
        margin: 5px 0 0 22px;
        font-weight: normal;
    }
    
    
    .main_info i {
        font-size: 14px;
        color: #0e90d2;
    }
    
    .margin-bottom-15 {
        margin-bottom: 15px;
    }
    
    .new_article_main {
        position: relative;
    }
    .new_article_main img{
        position    : relative;
    }
    
    .new_article_main div.title_parent {
        color: white;
        background-color: rgba(0,0,0,0.6);
        padding: 5px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    
    .new_article_main div.article_title {
        margin: 5px;
        line-height: 30px;
        font-size: 22px !important;
        font-weight: bold;
    }
    
    .new_article_main a {
        text-decoration: none;
    }
    
    
    .fullstory_img {
        position: relative;
    }
    .fullstory_img img{
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 0 !important;
    }
    
    .fullstory_img div {
        color: white;
        background-color: rgba(0,0,0,0.6);
        padding: 15px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    
    .fullstory_img span {
        color: white;
        background-color: rgba(96, 96, 96, 0.6);
        padding: 5px;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 0.8em;
    }
    
    .fullstory_img h1 {
        margin: 5px;
        line-height: 30px;
        font-size: 30px !important;
    }
    2022-10-07_12-34-11.png
    Для отображения иконок как на демо - нужно подключить Font Awesome Free.
     

    Вложения:

    #4 byroot, 7 окт 2022
    Последнее редактирование: 7 окт 2022
    • Нравится Нравится x 2
  5. TopicStarter Overlay
    Bayko

    Bayko Бывалый

    Регистрация:
    30 июл 2019
    Сообщения:
    110
    Лучших ответов:
    0
    Рейтинги:
    +5 / 1 / -0
    Вы просто прекрасны. Спасибо большое
     
  6. byroot

    Забанен

    Регистрация:
    10 окт 2015
    Сообщения:
    12.295
    Лучших ответов:
    54
    Рейтинги:
    +5.206 / 74 / -0
Яндекс.Метрика