goTOP
March 31, 2015
有時候幫客戶保留評論或是留言,客戶以為自己異想天開妳就得完成,真的是很浪費資源,有空就要去管理,否則塞廣告或是提供對岸學習測試,一點鳥用都沒有(當然可以賺廣告費啦)

點擊在新視窗中瀏覽此圖片
January 7, 2015
用{}包含起來的是"標籤" 可以解釋為所保含的HTML與內容

注1: 標有*号號的是2.0.3起新增的標籤。
注2: 各個標籤在其規定的區域內可直接使用,例如在$elements['header'] 區域中,{blogkeywords}可直接輸出blog關鍵詞。但這些標籤不是全局性的,當在$elements['displayheader'] 中引用時,不會被解釋。在Bo-blog 2.0.3以前的版本中,您無法跨區域使用標籤,但2.0.3 版本起,程序提供了一個跨區域引用標籤的方法。要使用非本區域中定義的標籤,請使用<!--global:{標籤名}--> 。例如,在本例中,書寫<!--global:{blogkeywords}--> 即可輸出blog關鍵詞。
January 5, 2015
點擊在新視窗中瀏覽此圖片
參考頁面(對應電腦與手機版本):
http://www.childepi.org.tw/index.php?act=donation
January 4, 2015
Bo-Blog 2.0 template 由以下幾個檔案夾組成

template/
可於文件夾下找到


|- 風格之 style.css;
|- 風格之images 圖片文件夾;
|- 風格之信息文件info.php;
|- 風格之結構定義文件 element.php;
|- 風格之定義縮圖;


註:風格=主題=template

點擊在新視窗中瀏覽此圖片

CSS详解
January 2, 2015
點擊在新視窗中瀏覽此圖片

template/主題/elements.php
找出下面這一段


// 評論數量 所有評論
$elements['comment']=<<<eot
  <div class="commentbox">
    <div class="commentbox-title">
    <img src="{$template['images']}/comments_li.gif" /> <strong>{replier}</strong> {replierhomepage} {replierip}
      <div class="commentbox-label">{replytime} {addadminreply} {deladminreply} {delreply} {blockreply}</div>
    </div>
    <div class="commentbox-content">
      {replycontent}
      <div style="display: {ifadminreplied}"  id="replied_{commentid}">
        <div class="reply-content"><span class="reply-content_title">回覆內容</span> {adminreplycontent}</div>
      </div>
    </div>
    <div id="{commentid}" style="display: none">{adminreplybody}
    </div>
  </div>
eot;

December 31, 2014
這是inc檔案裏的設定,不是只是改變大小的選項,
這只是個人筆記,萬一您的模組或顯示有問題,一概不負責。


點擊在新視窗中瀏覽此圖片

點擊在新視窗中瀏覽此圖片

size=選項內字號
(0=0) (8=1) (10=2) (12=3) (14=4) (18=5) (24=6) (36=7)


function makefontsize ($size, $word) {
  $word=stripslashes($word);
  $sizeitem=array (0, 8, 10, 12, 14, 18, 24, 36);
  $size=$sizeitem[$size];
  return "<span style=\"font-size: {$size}px;\">{$word}</span>";
}
分頁: 3/5 第一頁 上頁 1 2 3 4 5 下頁 最後頁 [ 顯示模式: 摘要 | 清單 ]