No problems using it? I still have the original KB mod, which I want to de-install first.Well, I'm already using it on my live board
No problems using it? I still have the original KB mod, which I want to de-install first.Well, I'm already using it on my live board
No, no major problems using it.panhead wrote:No problems using it? I still have the original KB mod, which I want to de-install first.Well, I'm already using it on my live board
Go to \styles\your_style\template\kb\plugins and open categories.html and find:Jessica wrote:The article title when viewing to a category is too big on my board. What part of the css do I change to change its font size?
Code: Select all
<h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('hide_cat', ''); javascript:dE('show_cat', '');" title="{L_SHOW_CAT}"><img src="{T_THEME_PATH}/images/arrow_down.gif" alt=">" /> {L_SHOW_CAT}</a></h4>
</div>
<div id="hide_cat" style="display:none;">
<h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('show_cat', ''); javascript:dE('hide_cat', '');" title="{L_HIDE_CAT}"><img src="{T_THEME_PATH}/images/arrow_up.gif" alt=">" /> {L_HIDE_CAT}</a></h4>
Go to \styles\your_style\template\kb\plugins and open random_article.html (or latest_article.html) and find:Also, I feel like the Random Article and Latest Article's title is too big, how do I change those?
Code: Select all
<div><h4><a href="{U_RAN_ARTICLE}"><strong>{RAN_ARTICLE_TITLE}</strong></a></h4></div>
Thanksmladiucitelj wrote:Go to \styles\your_style\template\kb\plugins and open categories.html and find:Jessica wrote:The article title when viewing to a category is too big on my board. What part of the css do I change to change its font size?Delete two of <h4> and two of </h4>.Code: Select all
<h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('hide_cat', ''); javascript:dE('show_cat', '');" title="{L_SHOW_CAT}"><img src="{T_THEME_PATH}/images/arrow_down.gif" alt=">" /> {L_SHOW_CAT}</a></h4> </div> <div id="hide_cat" style="display:none;"> <h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('show_cat', ''); javascript:dE('hide_cat', '');" title="{L_HIDE_CAT}"><img src="{T_THEME_PATH}/images/arrow_up.gif" alt=">" /> {L_HIDE_CAT}</a></h4>
Go to \styles\your_style\template\kb\plugins and open random_article.html (or latest_article.html) and find:Also, I feel like the Random Article and Latest Article's title is too big, how do I change those?Delete <h4> and </h4>.Code: Select all
<div><h4><a href="{U_RAN_ARTICLE}"><strong>{RAN_ARTICLE_TITLE}</strong></a></h4></div>
Code: Select all
<dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a>
Code: Select all
<dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><span style="font-size: 100%"><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a></span>
Code: Select all
<dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a>
<!-- IF articlerow.ARTICLE_UNAPPROVED --><a href="{articlerow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a> <!-- ENDIF -->
<br /><!-- IF articlerow.ARTICLE_DESC -->{articlerow.ARTICLE_DESC}<!-- ENDIF -->
</dt>
<dd class="posts">{articlerow.COMMENTS} <dfn>{L_COMMENTS}</dfn></dd>
<dd class="views">{articlerow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
<dd class="lastpost"><span>{articlerow.ARTICLE_AUTHOR_FULL}<br /><!-- IF articlerow.ATTACH_ICON_IMG -->{articlerow.ATTACH_ICON_IMG} <!-- ENDIF -->{articlerow.FIRST_POST_TIME} </span>
</dd>
Code: Select all
<span style="font-size: 100%"><dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a>
<!-- IF articlerow.ARTICLE_UNAPPROVED --><a href="{articlerow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a> <!-- ENDIF -->
<br /><!-- IF articlerow.ARTICLE_DESC -->{articlerow.ARTICLE_DESC}<!-- ENDIF -->
</dt>
<dd class="posts">{articlerow.COMMENTS} <dfn>{L_COMMENTS}</dfn></dd>
<dd class="views">{articlerow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
<dd class="lastpost"><span>{articlerow.ARTICLE_AUTHOR_FULL}<br /><!-- IF articlerow.ATTACH_ICON_IMG -->{articlerow.ATTACH_ICON_IMG} <!-- ENDIF -->{articlerow.FIRST_POST_TIME} </span>
</dd></span>