==========================================================================
【問3】:主題列表高亮 修改方法
index.php 添加的那段改成- //每版最新主题--开始
- $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
- $hack_cut_str =60; // 这里修改标题长度
- $fids = array();
- if (file_exists("./forumdata/cache/cache_forums.php")){
- require_once "./forumdata/cache/cache_forums.php";
- if (is_array($_DCACHE['forums'])){
- foreach ($_DCACHE['forums'] as $k => $v){
- if (!strstr(',sub,forum,',','.$v['type'].',')) continue;
- $fids[$k] = 5; // 这里是第一处调用条数需要和后面的设置一样。
- }
- }
- }
- if (count($fids) < 1){
- $query = $db->query("SELECT fid FROM {$tablepre}forums WHERE type='forum' OR type='sub'");
- while ($row = $db->fetch_array($query)){
- $fids[$row['fid']] = 5; // 这里是第二处调用条数需要和前面的设置一样。
- }
- }
- $limit_counts = 0;
- foreach ($fids as $k => $v){
- $sql .= "(SELECT t.*, f.name FROM {$tablepre}threads t LEFT JOIN {$tablepre}forums f ON f.fid = t.fid WHERE t.fid='$k' AND t.closed NOT LIKE 'moved|%' AND t.displayorder>=0 ORDER BY t.dateline DESC LIMIT $v) UNION ";
- }
- if ($sql){
- $sql = substr($sql,0,strlen($sql)-6);
- }
- $query = $db->query($sql);
- while ($row = $db->fetch_array($query)){
- $row['view_subject'] = cutstr($row['subject'],$hack_cut_str);
- $row['date']= gmdate("$dateformat", $row['dateline'] + $timeoffset * 3600);
- if($row['highlight']) {
- $string = sprintf('%02d', $row['highlight']);
- $stylestr = sprintf('%03b', $string[0]);
- $row['highlight'] = 'style="';
- $row['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
- $row['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
- $row['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
- $row['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
- $row['highlight'] .= '"';
- } else {
- $row['highlight'] = '';
- }
- ${'new_no'.$row['fid'].'_threadlist'}[] = $row;
- }
- //每版最新主题--结束
复制代码
======================================================
【問4】:请问能不能只改横排?竖排我想要原来默认的 (5/23更新)
discuz.htm 這個文件裡
<!--{/loop}-->
<!--{else}-->
以上是豎排, 以下是橫排
======================================================
【問5】:主題列表3條 如何修改更多條?
問這問題... 眼睛長到後面去了?
index.php 添加的那段代碼拿出來看! 你就知道改哪了... 有兩處
安裝東西不要只會複製貼上, 也要看一下代碼...
======================================================
【問6】:圖標放到左邊
css_append.htm
找
div.b-icon { float:right; }
改成
div.b-icon { float:left; }
後台更新 CSS緩存
======================================================
【問7】:
錯位了
這個絕對是CSS的關係。 CSS無法讀入,格式才會亂掉
A.
你修改到對了 風格目錄 之下的 css_append.htm 嗎?
是修改你使用中的風格目錄哦,如果這個風格目錄裡面沒有css_append.htm那才是修改default目錄裡面的
B. 更新CSS緩存
1. 後台[版块 » 界面风格], 更新CSS緩存
如果還是無效...........................................................
2. 请删除这两个目录之下的所有文件
forumdata/cache/
forumdata/templates/
然后刷新首页2次,应该可以解决问题.
======================================================
【問8】:
======================================================
【問9】:
======================================================
【問10】:
[ 本帖最后由 jillyz 于 2008-6-28 11:01 编辑 ] |