Hướng dẫn thay đổi màu tiêu đề cho từng mục forum

  • Thread starter Thread starter PVS
  • Ngày gửi Ngày gửi

PVS

Super Moderator
Thành viên BQT
Mở templates node_forum_level_2 tìm
Mã:
<h3 class="nodeTitle"><a href="{xen:link forums, $forum}" data-description="{xen:if @nodeListDescriptionTooltips, '#nodeDescription-{$forum.node_id}'}">{$forum.title}</a></h3>

Thay thế bằng :
Mã:
<h3 class="nodeTitle nodeTitle{$forum.node_id}"><a href="{xen:link forums, $forum}" data-description="{xen:if @nodeListDescriptionTooltips, '#nodeDescription-{$forum.node_id}'}">{$forum.title}</a></h3>

Và mở templates node_list.css

Thêm vào cuối:
Mã:
/*** MAU TITLE FORUM ***/

.nodeTitleID a,

.nodeTitleID a:visited

{

color: #000000;

font-weight: bold;

}

Các bạn thay ID của .nodeTitleID thành ID của forum bạn muốn thay đổi nhé, ví dụ .nodeTitle2. Và thay đổi màu ở color.

Demo:

1.png

Chúc các bạn thành công.


Nguồn: Online​
 
cái này áp dụng cho 2.X luôn hay sao vậy Ad, mình tìm không thấy node_forum_level_2 trong 2.x
 
Back
Top