|
|
| Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 | |
| | Tác giả | Thông điệp |
---|
motecaca Admin
Tham gia ngày : 04/12/2010 Điểm : 11050 Cảm ơn : 15 Sinh nhật : 29/12/1995 Đến từ : Hà Nội
| Tiêu đề: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 Tue Jun 07, 2011 3:03 pm | |
| Cho phpBB2 :-D: Post lại theo yêu cầu Bước 1: Vào Module ~> Forum widgets management. Trong bảng Forum widgets general options: Display forum widgets : chọn Có Width column 1 (left) : điền 180 Width column 3 (right) : điền nhiu cũng dc ( tốt nhất là 0 ) Sau đó đặt widget như hình : Enlarge this image Click to see fullsize Nhấn vào bánh xe màu vàng để sửa cấu hình: Number of recent topics : nhiu cũng dc (forum mình chọn 12). Activate the recent topics scrolling : chọn không Bước 2: Vào Display ~> template ~> portal ~> chọn mod_recent_topics: thay tất cả code trong đó bằng code sau: - Code:
-
<table style="border:#CCCCCF 1px solid;" width="100%"> <!-- BEGIN classical_row --> <tr> <th height="25" colspan="3"><span class="genmed" width="100%"><b><center>Bài gửi sau cùng </center></b></span></th> </tr> <tr><td class="catHead" align="center"><span class="genmed">Bài gửi</span></td><td class="catHead" align="center"><span class="genmed">Người gửi</span></td><td class="catHead" align="center"><span class="genmed">Thời gian</span></td><!-- BEGIN recent_topic_row --> <tr> <td class="row1" align="left" width="50%"><span class="gensmall"> [�] <a href="{classical_row.recent_topic_row.U_TITLE}">{classical_row.recent_topic_row.L_TITLE}</a></td><td class="row1" align="center" width="25%"> <span class="gensmall"><a href="{classical_row.recent_topic_row.U_POSTER}">{classical_row.recent_topic_row.S_POSTER}</span></a> </td><td class="row1" align="left" width="25%"> <span class="gensmall">{classical_row.recent_topic_row.S_POSTTIME}<br /> </span></td> </tr><!-- END recent_topic_row --> <!-- END classical_row --></table> Bước 3: Vào Display ~> template ~> quản lí tổng thể ~> chọn overall_header_new: chinhphuc.info Tìm: - Code:
-
<td valign="top" width="{C1SIZE}"> <div id="{ID_LEFT}"> <!-- BEGIN giefmod_index1 --> {giefmod_index1.MODVAR} <!-- BEGIN saut --> <div style="height:{SPACE_ROW}px"></div> <!-- END saut --> <!-- END giefmod_index1 --> </div> </td> Thay bằng: - Code:
-
<td valign="top" width="100%"> <div id="center"> <!-- BEGIN giefmod_index1 --> {giefmod_index1.MODVAR} <!-- BEGIN saut --> <div style="height:{SPACE_ROW}px"></div> <!-- END saut --> <!-- END giefmod_index1 --> </div> </td> </tr> <tr>
Được sửa bởi Admin ngày Tue Jun 07, 2011 3:09 pm; sửa lần 1. | |
| | | motecaca Admin
Tham gia ngày : 04/12/2010 Điểm : 11050 Cảm ơn : 15 Sinh nhật : 29/12/1995 Đến từ : Hà Nội
| Tiêu đề: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 Tue Jun 07, 2011 3:05 pm | |
| Cho PunBB Chỉnh trong Modules y như trên. 1.Display/template/QLTT/overall_header_new: tìm - Code:
-
{ID_LEFT} dổi thành cái gì cũng được :;-)): 2.Vào Dispaly/color/CSS: thêm: - Code:
-
div#left {clear:both; width: 100%; !important} html #content-container div#main {margin-left: 0px; !important}
3.Display/template/Portal/mod_rencent_topic: thay tất cả bằng: - Code:
-
<!-- BEGIN scrolling_row --> <div class="module main"> <div class="main-head"><div class="h3">{L_RECENT_TOPICS}</div></div> <div class="main-content" id="comments_scroll_div" style="height:{SCROLL_HEIGHT}px;overflow:auto"> <!-- BEGIN recent_topic_row --> » <a onmouseover="document.getElementById('comments_scroll_container').stop();" onmouseout="document.getElementById('comments_scroll_container').start();" href="{scrolling_row.recent_topic_row.U_TITLE}">{scrolling_row.recent_topic_row.L_TITLE}</a><br /> <img src="{ICON_TIME}" alt="" />{scrolling_row.recent_topic_row.S_POSTTIME} {BY} <a onmouseover="document.getElementById('comments_scroll_container').stop();" onmouseout="document.getElementById('comments_scroll_container').start();" href="{scrolling_row.recent_topic_row.U_POSTER}">{scrolling_row.recent_topic_row.S_POSTER}</a><br /><br /> <!-- END recent_topic_row --> </div> </div> <!-- END scrolling_row -->
<!-- BEGIN classical_row --><br /> <div class="module main"> <div class="main-head"><h3>Liệt kê những bài viết mới nhất</h3></div> <div class="main-content"><table cellpadding="0" cellspacing="0" class="table"><thead><tr><th width="50%">Bài viết mới</th><th width="20%">Người viết</th><th width="50%">Vào lúc</th></tr></thead><tbody class="statused"><!-- BEGIN recent_topic_row --><tr><td style=" padding: 2px; padding-left:10px;"> <img src="http://i292.photobucket.com/albums/mm30/huylordno1/cpstyle/lastpost.gif"></img><a href="{classical_row.recent_topic_row.U_TITLE}"> {classical_row.recent_topic_row.L_TITLE} </a></td><td class="tc3" style=" padding: 2px;padding-left:10px;"><a href="{classical_row.recent_topic_row.U_POSTER}">{classical_row.recent_topic_row.S_POSTER}</a></td><td style=" padding: 2px;padding-left:10px;">{classical_row.recent_topic_row.S_POSTTIME}</td></tr> <!-- END recent_topic_row --></tbody></table> </div> </div><br /> <!-- END classical_row -->
<script type="text/javascript"> //<![CDATA[ div_marquee('comments_scroll_div', 'comments_scroll_container', '{SCROLL_WAY}', '{SCROLL_STEP}', '{SCROLL_DELAY}', '{SCROLL_HEIGHT}', 'genmed'); //]]> </script>
Xong. :-D: | |
| | | motecaca Admin
Tham gia ngày : 04/12/2010 Điểm : 11050 Cảm ơn : 15 Sinh nhật : 29/12/1995 Đến từ : Hà Nội
| Tiêu đề: Re: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 Tue Jun 07, 2011 3:11 pm | |
| Latest topic - top poster chung một dòngHồi trước đã chia sẻ cái latest topic và top poster nhưng đã lỗi tùm lum hôm naychinhphuc.info chỉnh sửa lại và thế là ok ( xài được cả 3 trình duyệt FF - IE - Opera lun nhá )Bước 1 : Thay tất cả temp recent_topic bằng :<STRONG> - Code:
-
<!-- BEGIN classical_row --> [b]<SPAN class="gensmall"><table class="forumline12" width="800" border="0" cellspacing="0" cellpadding="0"><tr><th align="center" height="20"><span class="genmed"><b>Bài gửi</b></span></th><th align="center"><span class="genmed"><b>Người gửi</b></span></th><th align="center"><span class="genmed"><b>Thời gian</b></span></th><!-- BEGIN recent_topic_row --> <tr> <td class="row1" align="left" width="50%"><span class="gensmall"> <img src="http://i70.servimg.com/u/f70/13/00/88/47/post_n10.gif"></img> <a href="{classical_row.recent_topic_row.U_TITLE}">{classical_row.recent_topic_row.L_TITLE}</a></td><td class="row1" align="center" width="25%"><img src="http://i155.photobucket.com/albums/s282/satthuonline/catl.gif"></img> <span class="gensmall"><a href="{classical_row.recent_topic_row.U_POSTER}">{classical_row.recent_topic_row.S_POSTER} <img src="http://i155.photobucket.com/albums/s282/satthuonline/catr.gif"></img> </span></a> </td><td class="row1" align="center" width="25%"> <span class="gensmall"><img src="http://relazy.net/up/files/10/master.gif" border="0" alt="" /> {classical_row.recent_topic_row.S_POSTTIME}<br /> </span></td> </tr><!-- END recent_topic_row --></table> <!-- END classical_row --> Bước 2 : trong temp HEADER:(mặc định) tìm: - Code:
-
<div id="page-body"> <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}> <table cellpadding="0" cellspacing="0" width="100%" class="three-col"> <tbody> <tr> <td valign="top" width="{C1SIZE}"> <div id="{ID_LEFT}"> <!-- BEGIN giefmod_index1 --> {giefmod_index1.MODVAR} <!-- BEGIN saut --> <div style="height:{SPACE_ROW}px"></div> <!-- END saut --> <!-- END giefmod_index1 --> </div> </td> <td valign="top" width="100%"> <!-- BEGIN html_validation --> </td> </tr> </tbody> </table> </div> </div> </td> </tr> </table> </body> </html> <!-- END html_validation --> thay bằng: - Code:
-
<div id="page-body"> <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}> <table cellpadding="0" cellspacing="0" width="100%" border="0"> <tbody> <tr> <td valign="top" width="100%"> <div class="test"><table class="thongke" cellpadding="0" cellspacing="0" width="100%" align="center"><tr><!-- BEGIN giefmod_index1 --><td align="center"> {giefmod_index1.MODVAR} </td><!-- END giefmod_index1 --></tr></table><br /></div> </td> </tr><tr> <td valign="top" width="100%"> <!-- BEGIN html_validation --> </td> </tr> </tbody> </table> </div> </div> </td> </tr> </table> </body> </html> <!-- END html_validation --> | |
| | | motecaca Admin
Tham gia ngày : 04/12/2010 Điểm : 11050 Cảm ơn : 15 Sinh nhật : 29/12/1995 Đến từ : Hà Nội
| Tiêu đề: Re: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 Tue Jun 07, 2011 3:15 pm | |
| Latest topic có chia sốĐã khám phá ra là latest topic của huy chia sẻ không phải lỗi mà là để màu không được ( nếu để màu chữ là tum ngay ) bây h đã fix lại đây B1: vào Display -> template -> over_header_new tìm : - Code:
-
<div id="page-body"> <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}> <table cellpadding="0" cellspacing="0" width="100%" class="three-col"> <tbody> <tr> <td valign="top" width="{C1SIZE}"> <div id="{ID_LEFT}"> <!-- BEGIN giefmod_index1 --> {giefmod_index1.MODVAR} <!-- BEGIN saut --> <div style="height:{SPACE_ROW}px"></div> <!-- END saut --> <!-- END giefmod_index1 --> </div> </td> <td valign="top" width="100%"> <!-- BEGIN html_validation --> </td> </tr> </tbody> </table> </div> </div> </td> </tr> </table> </body> </html> <!-- END html_validation --> Thay bằng : - Code:
-
<div id="page-body"> <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}> <table cellpadding="0" cellspacing="0" width="100%" border="0"> <tbody> <tr> <td valign="top" width="100%"> <div class="test"><table class="thongke" cellpadding="0" cellspacing="0" width="100%" align="center"><tr><!-- BEGIN giefmod_index1 --><td align="center"> {giefmod_index1.MODVAR} </td><!-- END giefmod_index1 --></tr></table> </div> </td> </tr><tr> <td valign="top" width="100%"> <!-- BEGIN html_validation --> </td> </tr> </tbody> </table> </div> </div> </td> </tr> </table> </body> </html> <!-- END html_validation -->
B2 : vào display -> template -> portal -> mod_recent_topic : thay hết tất cả bằng code sau : - Code:
-
<!-- BEGIN classical_row --> <table class="forumline" width="700" border="0" cellspacing="1" cellpadding="0" align="left"><tr> <td class="catLeft" height="25" align="left"> <span class="genmed module-title">{L_RECENT_TOPICS}</span> </td> </tr> <tr align="left"> <td align="left"> <table summary="Lastet-topic" width="100%" align="left"> <!-- BEGIN recent_topic_row --> <tr align="left"> <td class="row3 genmed" width="70%" align="left"> <a href="{classical_row.recent_topic_row.U_TITLE}"><font color=white>__</font><span style="color:#20B6FB"><strong> {classical_row.recent_topic_row.L_TITLE}</strong></span></a> </td> <td class="row3" nowrap="nowrap" title="" align="right"> <table title="" border="0" cellspacing="0" cellpadding="0" width="100%" style="table-layout:fixed" align="right"><tbody><tr><td><font color="white">.</font></td><td width="100px" align="right"><a href="{classical_row.recent_topic_row.U_POSTER}"> <span class="genmed"><i>{classical_row.recent_topic_row.S_POSTER}</i></span></a></td></tr></tbody> </table> </td> </tr> <!-- END recent_topic_row -->
</table></td></tr></table><!-- END classical_row --> B3: vào Display -> color -> CSS paste thêm đoạn code sau : - Code:
-
.forumline{ border: 0px #0d0d0d solid; background: #fff url(http://img27.imageshack.us/img27/3236/listg.gif) no-repeat 0px 34px; color: #000000; } .forumline02{ border: 0px #0d0d0d solid; background: #fff; color: #000000; } .catLeft { background: #ffcf62 url(http://img401.imageshack.us/img401/1566/tilecat.gif) repeat-x top left; color: #000000; font: bold 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } .catLeft a:link, .catLeft_alink { color: #000000; text-decoration: none; } .catLeft a:visited, .catLeft_avisited { color: #000000; text-decoration: none; } .catLeft a:hover, .catLeft a:active, .catLeft_ahover { color: #FF3300; text-decoration: underline; }
td.row1{ background: #fff;; color: #000000; } td.row2{ background: #fff; color: #000000; } td.row3{ background: transparent; color: #000000; } td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom { background: #FF0000 url(http://img401.imageshack.us/img401/1566/tilecat.gif) repeat-x top left; color: #000000; font: bold 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; height: 29px; } Demo: [You must be registered and logged in to see this link.]Lưu ý : Các forum nếu xài các version khác lâu quá có lẽ sẽ lỗi phpBB2 như beatbox.withme.us bị lỗi nên không làm được cái này cho nên làm cái này đa số là không làm được chinhphuc.info | |
| | | motecaca Admin
Tham gia ngày : 04/12/2010 Điểm : 11050 Cảm ơn : 15 Sinh nhật : 29/12/1995 Đến từ : Hà Nội
| Tiêu đề: Re: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 Tue Jun 07, 2011 3:17 pm | |
| Latest topic chỉ hiện trang indexB1 : vào over_header_new tìm : - Code:
-
<div id="page-body"> <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}> <table cellpadding="0" cellspacing="0" width="100%" border="0"> <tbody> <tr> <td valign="top" width="100%"> <div class="test"><table class="thongke" cellpadding="0" cellspacing="0" width="100%" align="center"><tr><!-- BEGIN giefmod_index1 --><td align="center"> {giefmod_index1.MODVAR} </td><!-- END giefmod_index1 --></tr></table><br /></div> </td> </tr><tr> <td valign="top" width="100%"> <!-- BEGIN html_validation --> </td> </tr> </tbody> </table> </div> </div> </td> </tr> </table> </body> </html> <!-- END html_validation -->
Xóa đi và copy lại ! B2 : vào index_body tìm - Trích dẫn :
- {JAVASCRIPT}
Gắn đoạn đã copy ở trên vào phần dưới đó ! demo : [You must be registered and logged in to see this link.] chinhphuc.info | |
| | | motecaca Admin
Tham gia ngày : 04/12/2010 Điểm : 11050 Cảm ơn : 15 Sinh nhật : 29/12/1995 Đến từ : Hà Nội
| Tiêu đề: Re: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 Tue Jun 07, 2011 3:19 pm | |
| Hiện tooltip INFO khi rê chuột qua bài viết ở Latest TopicDemo : [You must be registered and logged in to see this link.]Cách làm : Bước 1 : Trước hết các bạn download file này về để upload lên host riêng : [You must be registered and logged in to see this link.] Ví dụ sau khi upload lên host, sẽ có dạng link như sau : - Code:
-
http://link của bạn.js Bước 2 : Lấy linkchinhphuc.info của file vừa upload lên host, bạn vào ACP > Display > Template > Portal > Mod_recent_topic, sau đó bạn chèn như sau : - Code:
-
<script type="text/javascript" src="http://link của bạn.js"></script> Thay - Code:
-
"http://link của bạn.js" thành link bạn upload lên host đấy nhé. Bước 3 : Bạn tìm trong Mod_recent_topic đoạn sau : - Code:
-
<a href="{classical_row.recent_topic_row.U_TITLE}">{classical_row.recent_topic_row.L_TITLE} </a>
Thay bằng đoạn sau : - Code:
-
<a href="{classical_row.recent_topic_row.U_TITLE}" onmouseover="Tip('<center><b><font color=red>08 DB B Community!</font></b></center><br><b><font color=red>Tiêu đề : </font></b>{classical_row.recent_topic_row.L_TITLE}<br><b><font color=red>Thời gian : </font></b>{classical_row.recent_topic_row.S_POSTTIME}')" onmouseout="UnTip()">{classical_row.recent_topic_row.L_TITLE}
</a>
Vậy là xong rồi nhé . Có mod này, các bạn hãy tự hào gì đã không thua kém VBB bao nhiêu đâu. | |
| | | motecaca Admin
Tham gia ngày : 04/12/2010 Điểm : 11050 Cảm ơn : 15 Sinh nhật : 29/12/1995 Đến từ : Hà Nội
| Tiêu đề: Re: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 Tue Jun 07, 2011 3:21 pm | |
| Bảng thống kê dạng tab - Code:
-
<div id="wrapcentre">
<table id="Table_02" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td > <img src="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/cattop_l.jpg" width="49" height="24" alt=""></td> <td background="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/cattop_c.jpg" width="100%"> </td> <td align="right"> <img src="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/cattop_r.jpg" width="49" height="24" alt=""></td> </tr></table> <table id="Table_03" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td align="left" background="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catleft.jpg"> <img src="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catleft.jpg"></td> <td bgcolor="#FFFFFF" width="100%"> <div id="wrapcentre">
<table width="100%" class="tablebg" cellspacing="1" > <tr> <td class="row1" align="center">
<br /><STYLE type=text/css>BODY { CURSOR: url('http://www.8xforum.co.cc/mouse.ani') } </STYLE><br /> <br /><style type='text/css'>
/* Style cho menu tabs */
div.TabView div.Tabs { height: 26px; /* chiều cao của tab menu */ overflow: hidden; }
div.TabView div.Tabs a { float: left; display: block; background-color:#FFFCD9; text-align: center; height: 26px; padding: 3px; vertical-align: middle; border: 1px solid #30a1db; /* đường viền quanh tabs menu */ text-decoration: none; font-family:Verdana, Arial, Helvetica, sans-serif; font-weight: bold; color: #000080; }
div.TabView div.Tabs a:hover, div.TabView div.Tabs a.Active { background-color: #31a1db; /* màu nền tab menu active */ color: #ffffff; }
/* Style cho phần text nội dung của mỗi tab */ div.TabView div.Pages { clear: both; border: 1px solid #30a1db; overflow: hidden; /* giá trị là auto nếu muốn hiện scroll bar */ } div.TabView div.Pages div.Page { height: 100%; padding: 5px; overflow: hidden; /* giá trị là auto nếu muốn hiện scroll bar */ } </style>
<script src=' http://vietwebguide.googlepages.com/tabview.js' type='text/javascript'></script>
<div id="TabView" class="TabView"> <!-- tabs --> <div style="width: 100%;" class="Tabs"> <a>Bài Viết Mới</a> <a>Thống Kê</a> <a>Hướng Dẫn</a>
</div>
<!-- nội dung tabs --> <div style="height:350px; width:100%" class="Pages">
<div class="Page"><center>
<table style="border:#CCCCCF 1px solid;" width="100%"><!-- BEGIN classical_row --> <tr><td class="catHead" align="center"><span class="genmed">Bài gửi</span></td><td class="catHead" align="center"><span class="genmed">Người gửi</span></td><td class="catHead" align="center"><span class="genmed">Thời gian</span></td><!-- BEGIN recent_topic_row --><tr><td class="row1" align="left" width="50%"><span class="gensmall"><img src=http://i455.photobucket.com/albums/qq272/chanpin/trangtri/mod-1.gif><a href="{classical_row.recent_topic_row.U_TITLE}">{classical_row.recent_topic_row.L_TITLE}</a></td><td class="row1" align="left" width="25%"> <span class="gensmall"><a href="{classical_row.recent_topic_row.U_POSTER}"><img src=http://i455.photobucket.com/albums/qq272/chanpin/trangtri/bangchu.gif>{classical_row.recent_topic_row.S_POSTER}</span></a> </td><td class="row1" align="left" width="25%"> <span class="gensmall"><img src=http://i455.photobucket.com/albums/qq272/chanpin/skinnhac/icon/lastpost1.gif>{classical_row.recent_topic_row.S_POSTTIME}<br /></span></td></tr><!-- END recent_topic_row --><!-- END classical_row --></table>
</center> </div>
<div class="Page"> <TABLE class=forumline cellSpacing=1 cellPadding=5 width="100%" border=0> <TBODY> <TR> <TH align=middle width="33%"><STRONG><FONT color=green>Thông kê I</FONT></STRONG></TH> <TH align=middle width="34%"><STRONG><FONT color=green>Thông kê II</FONT></STRONG></TH></TR> <TR> <TD class=row1 width="25%"><A href=/stats.htm#2><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif">Administrative statistics</a></TD>
<TD class=row3 width="25%"><A href="/stats.htm#3"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif">Topic hoạt động sôi nổi nhất</A> </TD></TR> <TR> <TD class=row3 width="25%"><A href="/stats.htm#4"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Topic được xem nhiều nhất</A></TD> <TD class=row1 width="25%"><A href="/stats.htm#5"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Thành viên có nhiều chủ đề nhất</A></TD></TR> <TR> <TD class=row1 width="25%"><A href="/stats.htm#6"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Top posting users trong tuần</A></TD> <TD class=row3 width="25%"><A href="/stats.htm#7"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Top posting users trong tháng</A></TD></TR> <TR> <TD class=row3 width="25%"><A href="/stats.htm#8"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Top posters</A></TD> <TD class=row1 width="25%"><A href="/stats.htm#9"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Số topic trong mỗi tháng</A></TD></TR> <TR> <TD class=row1 width="25%"><A href="/stats.htm#10"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Số bài post trong mỗi tháng</A></TD> <TD class=row3 width="25%"><A href="/stats.htm#11"><IMG src="http://i421.photobucket.com/albums/pp296/cuachung/online_vipmember.gif"> Số thành viên trong mỗi tháng</A></TD></TR></TBODY></TABLE> </div>
<div class="Page"> <center> <p><a href=http://caonguyen.withme.us/forum-f64/topic-t3353.htm#8461><strong><font size=4><font color=#00bfff>• Hướng dẫn vote bài viết bằng cách thank</font></font></strong> <a/></p> <p><a href=http://caonguyen.withme.us/forum-f64/topic-t3305.htm><strong><font size=4><font color=#00bfff>• Hướng Dẫn Post bài trong diễn đàn</font></font></strong> <a/></p> <p><a href=http://caonguyen.withme.us/forum-f64/topic-t3152.htm><strong><font size=4><font color=#00bfff>• Hướng dẫn Chỉnh tiếng việt trong lý lịch</font></font></strong> <a/></p> <p><a href=http://caonguyen.withme.us/forum-f64/topic-t1623.htm><strong><font size=4><font color=#00bfff>• Hướng dẫn chỉnh sữa avatar và chữ ký.</font></font></strong> <a/></p> <p><a href=http://caonguyen.withme.us/forum-f64/topic-t1624.htm><strong><font size=4><font color=#00bfff>• Hướng dẫn up hình lên diễn đàn</font></font></strong> <a/></p> <p><a href=http://caonguyen.withme.us/forum-f64/topic-t3132.htm#7011><strong><font size=4><font color=#00bfff>• Hướng dẫn up Nhạc lên diễn đàn</font></font></strong> <a/></p> <p><a href=http://caonguyen.withme.us/forum-f64/topic-t3133.htm#7012><strong><font size=4><font color=#00bfff>• Hướng dẫn up Nhạc video từ youtube lên diễn đàn</font></font></strong> <a/></p>
</center>
</div>
</div> </div> <script type="text/javascript">tabview_initialize('TabView');</script><br /> <br /><ScrollTop --> <style type="text/css"> #topbar { PADDING-TOP: 0px; PADDING-BOTTOM: 0px; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; VISIBILITY: hidden; WIDTH: 180px; FONT-FAMILY: Tahoma; POSITION: absolute; } </style> <script type="text/javascript"> var persistclose = 0 <!-- Vị trí--> var startX = 80 var startY = 500 var verticalpos = "frombottom"
function iecompattest() { return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body }
function get_cookie(Name) { var search = Name + "=" var returnvalue = ""; if (document�cookie.length > 0) { offset = document�cookie.indexOf(search) if (offset != -1) { offset += search.length end = document�cookie.indexOf(";", offset);
if (end == -1) end = document�cookie.length; returnvalue=unescape(document�cookie.substring(offset, end)) } } return returnvalue; }
function closebar() { if (persistclose) document�cookie="remainclosed=1" document.getElementById("topbar").style.visibility="hidden" }
function staticbar() { barheight=document.getElementById("topbar").offsetHeight var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera; var d = document; function ml(id) { var el=d.getElementById(id); if (!persistclose || persistclose && get_cookie("remainclosed")=="") el.style.visibility="visible" if(d.layers)el.style=el; el.sP=function(x,y){this.style.right=x+"px";this.style.top=y+"px";}; el.x = startX; if (verticalpos=="fromtop") el.y = startY; else { el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight; el.y -= startY; } return el; } window.stayTopLeft=function() { if (verticalpos=="fromtop") {
var pY = ns ? pageYOffset : iecompattest().scrollTop; ftlObj.y += (pY + startY - ftlObj.y)/8; } else { var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight; ftlObj.y += (pY - startY - ftlObj.y)/8; } ftlObj.sP(ftlObj.x, ftlObj.y); setTimeout("stayTopLeft()", 10); } ftlObj = ml("topbar"); stayTopLeft(); }
if (window.addEventListener) window.addEventListener("load", staticbar, false) else if (window.attachEvent) window.attachEvent("onload", staticbar) else if (document.getElementById) window.onload=staticbar </script>
</tr> </table> </div>
</td> <td align="right" background="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catright.jpg"> <img src="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catright.jpg"></td> </tr></table> <table id="Table_04" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td > <img src="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catbottom_l.jpg"></td> <td background="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catbottom_c.jpg" width="100%"> <img src="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catbottom_c.jpg"></td> <td align="right"> <img src="http://i455.photobucket.com/albums/qq272/chanpin/skinmoi/catbottom_r.jpg"></td> </tr></table>
</div>
| |
| | | Sponsored content
| Tiêu đề: Re: Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 | |
| |
| | | | Bài viết sau cùng hiện đầu diễn đàn, nằm ngang (latest topic) cho punBB và phpBB2 | |
|
Trang 1 trong tổng số 1 trang | |
Similar topics | |
|
| Permissions in this forum: | Bạn không có quyền trả lời bài viết
| |
| |
| |
|