HowTo Добавляем индикатор для непрочитанных/прочитанных подфорумов XenForo

Lowrens

Moderator
Staff member
VIP Hard
Verified
Joined
Nov 25, 2015
Messages
10,958
Reaction score
1,102
Для того чтобы установить индикатор для непрочитанных / прочитанных подфорумов в XenForo, необходимо:

Найти шаблон EXTRA.css можно в админке:
Appearance -> Templates -> EXTRA.css
Внешний вид -> Шаблоны -> EXTRA.css

И в шаблон EXTRA.css добавить:
Code:
.subForumList li .unread .nodeTitle:before {
   color: rgb(39, 174, 96);
   content: "\2022";
   font-size: 23px;
   font-weight: 700;
   line-height: 14px;
   width: 12px;
}
.subForumList li .nodeTitle:before {
   color: grey;
   content: "\2022";
   font-size: 23px;
   font-weight: 700;
   line-height: 14px;
   width: 12px;
}
 
Top