vsniperu
datinh4you
- 11/4/05
- 2,154
- 2
Chúng ta bắt đầu trên Default Style và việc đầu tiên cần làm là định hình bộ khung của forum. Giao diện nguyên thủy của vBB forum thì các Category gắn liền với nhau mà đa số mọi người lại thích nó tách rời ra ( sau này có thể thêm hình ảnh ở phía trên và dưới mỗi Category cho đẹp chẳng hạn) và thực tế là khi ta tách các Category riêng biệt ra thì sẽ pro hơn vừa có thể trang trí cho đẹp lại vừa gọn gàng thuận tiện cho việc theo dõi của người đọc.
+Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Home Templates -> mở FORUMHOME template rồi xóa đoạn code màu đỏ đi:
+Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Home Templates -> mở forumhome_forumbit_level1_nopost rồi thêm đoạn code màu xanh:
+Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Display Templates -> mở FORUMDISPLAY rồi xóa đoạn code màu đỏ đi:
Tách Category:
+Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Home Templates -> mở FORUMHOME template rồi xóa đoạn code màu đỏ đi:
<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<if condition="$show['guest']">
<!-- guest welcome message -->
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
<!-- / guest welcome message -->
</if>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr></thead>
$forumbits
<tbody>
+Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Home Templates -> mở forumhome_forumbit_level1_nopost rồi thêm đoạn code màu xanh:
br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<a style="float:$stylevar" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr></tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
$childforumbits
</tbody>
</if>
+Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Display Templates -> mở FORUMDISPLAY rồi xóa đoạn code màu đỏ đi:
<if condition="$show['forumslist']">
<!-- sub-forum list -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
<td class="tcat" width="100%">$vbphrase[subforums]<span class="normal">: $foruminfo[title]</span></td>
<if condition="$show['forumsearch']">
<td class="vbmenu_control" id="forumsearch.subforums"><a href="search.php?$session[sessionurl]f=$foruminfo[forumid]">$vbphrase[search_this_forum]</a> <script type="text/javascript"> vbmenu_register("forumsearch.subforums"); </script></td>
</if>
</tr>
</table>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions[showmoderatorcolumn]">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr></thead>
$forumbits
</table>
<br />
<!-- / sub-forum list -->
</if>