Перейти из форума на сайт.

НовостиФайловые архивы
ПоискАктивные темыТоп лист
ПравилаКто в on-line?
Вход Забыли пароль? Первый раз на этом сайте? Регистрация
Компьютерный форум Ru.Board » IkonBoard и другие форумы » Ikonboard v.3 » Форма быстрого ответа

Модерирует : Antuan

 Версия для печати • ПодписатьсяДобавить в закладки

Открыть новую тему     Написать ответ в эту тему

Maximus_BRZ



Silver Member
Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Подскажите пожалуйста как ее поставить?

Всего записей: 2219 | Зарегистр. 11-01-2003 | Отправлено: 20:02 04-09-2003
WolfHound

Newbie
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору
Иди в Edit Skin Properties>HTML>Viewing A Topic Elements>Table Footer и замени там код этим кодом:
 

Код:
<a name="bottom"></a>
  <table cellpadding='0' cellspacing='0' border='0' width='<%SKIN:TABLE_WIDTH%>' bgcolor='<%SKIN:TABLE_BORDER_COL%>' align='center'>
     <tr>
         <td>
           <table cellpadding='0' cellspacing='1' border='0' width='100%'>
             <tr>
               <td bgcolor='<%SKIN:TITLEBACK%>'>
                 <table border='0' width='100%' cellspacing='0' cellpadding='0' bgcolor='<%SKIN:TITLEBACK%>'>
                   <tr>
                     <td valign='middle' align='left' id='titlemedium'>  <%LANG:Topic:topic_stats%></td>
                     <td valign='middle' align='right' id='titlemedium'>< <a href='<%VAR:BOARD_URL%>/ikonboard.<%VAR:CGI_EXT%>?s=$iB::SESSION;act=ST;f=$data->{'FORUM'}->{'FORUM_ID'};t=$data->{'TOPIC'}->{'TOPIC_ID'};view=old' class='titlemedium'><%LANG:Topic:t_old%></a> | <a href='<%VAR:BOARD_URL%>/ikonboard.<%VAR:CGI_EXT%>?s=$iB::SESSION;act=ST;f=$data->{'FORUM'}->{'FORUM_ID'};t=$data->{'TOPIC'}->{'TOPIC_ID'};view=new' class='titlemedium'><%LANG:Topic:t_new%></a> >  </td>
                   </tr>
                  </table>
               </td>
             </tr>
           </table>
        </td>
     </tr>
</table>  
<br>
<table cellpadding='0' cellspacing='0' border='0' width='<%SKIN:TABLE_WIDTH%>' align='center'><tr>
       <td valign='top' width='50%' nowrap align='left'><p align="left">[ <a href="<%VAR:BOARD_URL%>/ikonboard.<%VAR:CGI_EXT%>?s=$iB::SESSION;act=Subs;f=$data->{'FORUM'}->{'FORUM_ID'};t=$data->{'TOPIC'}->{'TOPIC_ID'}"><%LANG:Topic:track_topic%></a> :: <a href="<%VAR:BOARD_URL%>/ikonboard.<%VAR:CGI_EXT%>?s=$iB::SESSION;act=Forward;f=$data->{'FORUM'}->{'FORUM_ID'};t=$data->{'TOPIC'}->{'TOPIC_ID'}"><%LANG:Topic:forward%></a> ::  
<a href="<%VAR:BOARD_URL%>/ikonboard.<%VAR:CGI_EXT%>?s=$iB::SESSION;act=Print;f=$data->{'FORUM'}->{'FORUM_ID'};t=$data->{'TOPIC'}->{'TOPIC_ID'}"><%LANG:Topic:print%></a> ]</p>$data->{'TOPIC'}->{'SHOW_PAGES'} </td>
       <td valign='middle' width='50%' nowrap align='right'>$data->{'TOPIC'}->{'REPLY_BUTTON'} <a href="<%VAR:BOARD_URL%>/ikonboard.<%VAR:CGI_EXT%>?s=$iB::SESSION;act=Post;CODE=00;f=$data->{'FORUM'}->{'FORUM_ID'}" title='<%LANG:Topic:start_new_topic%>'><%SKIN:A_POST%></a> $data->{'TOPIC'}->{'POLL_BUTTON'}</td>
</tr></table>
<br>
<table cellpadding='0' cellspacing='0' border='0' width='<%SKIN:TABLE_WIDTH%>' align='center'>
 <tr>
<!--
####################################
##Quick Reply Hack with Smilies and  
##UBBC Hack.  
##Read below on how to edit.
#####################################
-->
<form action="<%VAR:BOARD_URL%>/ikonboard.<%VAR:CGI_EXT%>" method="POST" name='REPLIER' onSubmit='return ValidateForm()' enctype="multipart/form-data">
<input type='hidden' name='st' value='<%IN:st%>'>
<input type='hidden' name='act' value='Post'>
<input type='hidden' name='CODE' value='03'>
<input type='hidden' name='s' value='$iB::SESSION'>
<input type='hidden' name='f' value='$data->{'FORUM'}->{'FORUM_ID'}'>
<input type='hidden' name='t' value='$data->{'TOPIC'}->{'TOPIC_ID'}'>
<table cellpadding='0' cellspacing='0' border='0' width='<%SKIN:TABLE_WIDTH%>' bgcolor='<%SKIN:TABLE_BORDER_COL%>' align='center'>
<tr>
<td bgcolor='<%SKIN:TABLE_BORDER_COL%>'>
<table border='0' cellPadding='5' cellSpacing='1' width='100%' align='center'>
<tr>
<td bgcolor='<%SKIN:TITLEBACK%>' width='169' valign='middle' align='left' id='titlemedium'><b>Quick Reply:</b></td>
<td bgcolor='<%SKIN:TITLEBACK%>' colspan="2" width=* valign='middle' align='left' id='titlemedium'>$data->{'TOPIC'}->{'TOPIC_TITLE'}</td>
</tr>
<script language="javascript">
var MessageMax  = "<%LANG:Topic:the_max_length%>";
var Override    = "<%LANG:Topic:override%>";
function ValidateForm() {
 MessageLength  = document.REPLIER.Post.value.length;
 errors = "";
 if (MessageLength < 2) {
      errors = "<%LANG:Topic:js_no_message%>";
 }
 if (MessageMax !=0) {
     if (MessageLength > MessageMax) {
         errors = "Topic:\\n<%LANG:Topic:js_max_length%> " + MessageMax + " <%LANG:Topic:js_characters%>.\\n<%LANG:Topic:js_current%>: " + MessageLength;
     }
 }
 if (errors != "" && Override == "") {
     alert(errors);
     return false;
 } else {
     document.REPLIER.Submit.disabled = true;
     return true;
 }
}
</script>
<tr>
<td bgcolor='<%SKIN:MISCBACK_ONE%>' valign='top' width='169'>
<input type='checkbox' name='enablesig' value='yes' checked><%LANG:Topic:enable_sig%>Do you wish to enable your signature for this post?<BR>
<input type='checkbox' name='enableemo' value='yes' checked><%LANG:Topic:enable_emo%>Do you wish to enable emoticons for this post?
<BR><input type='checkbox' name='enablesubs' value='yes'><%LANG:Post:enable_subs%>Track this topic<br> <br><b></b>
<!--
###################################################
##Anywhere below where it says "yoururl"
##You must edit to match your url.  You must also
##change the cgi extension if you are using the .pl
##extension.  The smilie editing should be self  
##explanatory.  
###################################################
-->
<a href="javascript:PopUp('http://www.yoururl.com/cgi-bin/ikonboard.cgi?act=Legends&CODE=emoticons','HelpCard','200','400','0','1','1','1')">Emoticons</a> :: <a href="javascript:PopUp('http://www.yoururl.com/cgi-bin/ikonboard.cgi?act=Legends&CODE=ibcode','HelpCard','250','400','0','1','1','1')">iB Code</a>  
</td>
<td bgcolor='#000000' colspan='2' align='center'>
<script language="javascript" type="text/javascript" src="http://www.yoururl.com/iB_html/non-cgi/ubbc/ubbc.js"></script>
<script language="javascript" type="text/javascript"><!--
var flash_w = '200'; var flash_h = '200';
var ubbc_dir = 'http://www.yoururl.com/iB_html/non-cgi/ubbc';
var emoticon_dir = 'http://www.yoururl.com/iB_html/non-cgi/emoticons';
var use_graphics = 1; // 1 = Graphical, 0 = Form based (buttons)
makeInterface(1,0,use_graphics);
//--></script>
<font class='misc'></font>
<script language="javascript" type="text/javascript" src="http://www.yoururl.com/iB_html/non-cgi/ubbc/ubbc.js"></script>
<textarea rows="5" wrap="soft" name="Post" tabindex="3" class="textinput" style="width:95%;> </textarea>
<script language="javascript"><!--
ubbcInit(1,0,use_graphics);
//--></script>
<BR>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#9400D3" width="90%" id="AutoNumber1" height="25">
<tr>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :-) ');" style="text-decoration: none; color: #660066">
             <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/smile.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :-( ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/sad.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :-D ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/biggrin.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :-p ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/tounge.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(';-) ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/wink.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :-/ ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/confused.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :-o ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/wow.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :angry: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/mad.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :rolleyes: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/rolleyes.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :thumbs-up: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/thumbs-up.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :clueless: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/clueless.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :loveya: ');" style="text-decoration: none; color: #660066">
             <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/loveya.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :sneak: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/sneaky2.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :lol: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/lol.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :crackhead: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/crackhead.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :lookatme: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/lookatme.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :moonie: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/moonie.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :burnfucker: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/burnfucker.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :bow: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/bow.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :disappointed: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/disappointed.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :bouncer: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/bouncer.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :smokey: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/smokey.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :firebounce: ');" style="text-decoration: none; color: #660066">
             <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/firebounce.gif" border="0"></a></div>
       </td>
<table border="0" cellpadding="0" cellspacing="3" style="border-collapse: collapse" bordercolor="#C8C8C8" width="60%" id="AutoNumber1" height="25">
</tr>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :fucking: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/fucking.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :rofl: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/rofl.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :fuggin: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/fuggin.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :blow: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/blow.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :toast: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/toast.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :suicide: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/suicide.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(':poke:');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/poke.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :fuckoff: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/fuckoff.gif" border="0"></a></div>
       </td>
       <td style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; font-family: Verdana; color: #666666" width="0">
         <div align="center">
           <a href="javascript:emoticon(' :fart: ');" style="text-decoration: none; color: #660066">
           <img src="http://www.yoururl.com/iB_html/non-cgi/emoticons/fart.gif" border="0"></a></div>
       </td>
       </td>
     </tr>
</table>
<br>
<input type="submit" name="Submit" value="Post" class='forminput'>
<input type="submit" name="preview" value="Preview" class='forminput'>
</td></tr></table></td></tr></table></form>  
<table cellpadding='0' cellspacing='0' border='0' width='<%SKIN:TABLE_WIDTH%>' align='center'>
<td valign='middle' align='center'>$data->{'FORUM'}->{'JUMP'}</td>
 </tr>
</table>
<!--
###################################################
##This is the end of the editable area.
###################################################
-->
<br>
<br>

Всего записей: 6 | Зарегистр. 31-08-2003 | Отправлено: 21:22 05-09-2003
Открыть новую тему     Написать ответ в эту тему

Компьютерный форум Ru.Board » IkonBoard и другие форумы » Ikonboard v.3 » Форма быстрого ответа


Реклама на форуме Ru.Board.

Powered by Ikonboard "v2.1.7b" © 2000 Ikonboard.com
Modified by Ru.B0ard
© Ru.B0ard 2000-2024

BitCoin: 1NGG1chHtUvrtEqjeerQCKDMUi6S6CG4iC

Рейтинг.ru