icons unter Textfeld

Sammy11
hallo...

wie kann ich die Icons unter dem Textfeld anzeigen lassen ... ?

lg
sammy
janolaf
du meinst die Icons beim Thread erstellen , bentworten, editieren....
die sollen nicht über , sondern unter das Textfeld ??
hardcore-punk
suche in der addreply nach

code:
1:
2:
3:
 $newthread_icons


und lösche es.


suche nach:
code:
1:
2:
3:
4:
5:
6:
  </table></td>
 </tr>
</table>
<div id="newthreadOptions" class="hoverMenu">


und tausche es aus mit:

code:
1:
2:
3:
4:
5:
6:
7:
  </table></td>
 </tr>
 $newthread_icons
</table>
<div id="newthreadOptions" class="hoverMenu">



****************************

suche in der newthread nach

code:
1:
2:
3:
 $newthread_icons


und lösche es.


suche nach:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
    $editor_switch
    </td>
   </tr>
  </table>
  </td>
 </tr>
 <if(checkmodpermissions("m_can_announce") || checkmodpermissions("m_can_thread_top"))>
  <then>
   <tr align="left">
    <td class="tableb"><span class="normalfont"><b>{$lang->items['LANG_POST_CREATE_THREAD_AS']}</b></span></td>
    <td class="tableb"><span class="normalfont"><input type="radio" id="radio1" name="important" value="0" $imp_checked[0] /><label for="radio1"> {$lang->items['LANG_POST_IMPORTANT0']}</label><if(checkmodpermissions("m_can_thread_top")==1)><then> <input type="radio" name="important" id="radio2" value="1" $imp_checked[1] /><label for="radio2"> {$lang->items['LANG_POST_IMPORTANT1']}</label></then></if> <if(checkmodpermissions("m_can_announce")==1)><then> <input type="radio" name="important" id="radio3" value="2" $imp_checked[2] /><label for="radio3"> {$lang->items['LANG_POST_IMPORTANT2']}</label></then></if></span></td>
   </tr> 
  </then>
 </if>
</table>
<div id="newthreadOptions" class="hoverMenu">
 <ul class="smallfont">


und tausche es aus mit:

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
   $editor_switch
    </td>
   </tr>
  </table>
  </td>
 </tr>
 <if(checkmodpermissions("m_can_announce") || checkmodpermissions("m_can_thread_top"))>
  <then>
   <tr align="left">
    <td class="tableb"><span class="normalfont"><b>{$lang->items['LANG_POST_CREATE_THREAD_AS']}</b></span></td>
    <td class="tableb"><span class="normalfont"><input type="radio" id="radio1" name="important" value="0" $imp_checked[0] /><label for="radio1"> {$lang->items['LANG_POST_IMPORTANT0']}</label><if(checkmodpermissions("m_can_thread_top")==1)><then> <input type="radio" name="important" id="radio2" value="1" $imp_checked[1] /><label for="radio2"> {$lang->items['LANG_POST_IMPORTANT1']}</label></then></if> <if(checkmodpermissions("m_can_announce")==1)><then> <input type="radio" name="important" id="radio3" value="2" $imp_checked[2] /><label for="radio3"> {$lang->items['LANG_POST_IMPORTANT2']}</label></then></if></span></td>
   </tr> 
  </then>
 </if>
$newthread_icons
</table>
<div id="newthreadOptions" class="hoverMenu">
 <ul class="smallfont">



****************************

im Prinzip musst du immer nur das erste $newthread_icons löschen, und dann vor die Zeile:
code:
1:
2:
3:
4:
</table>
<div id="newthreadOptions" class="hoverMenu">

setzen.

Das machst du dann auch in der pms, editpost, (oder wo du sonst noch überall Icons eingebaut hast), wenn du es dort ebenfalls so haben willst!
Sammy11
Hallo hardcore-punk..

Ja so in etwa, nurdie icons sollten noch unter den buttons
Antwort erstellen
Vorschau und
Zurücksetzen...

und meinst du die templates oder php dateien ?

danke für deine schnelle Hilfe

lg
Sammy
hardcore-punk
Ja, ich meine die Templates!!! (addreply, newthread, pms, editpost,...)

suche in der addreply nach

code:
1:
2:
3:
 $newthread_icons


und lösche es.


suche nach:
code:
1:
2:
3:
</form>


ersetze es mit:

code:
1:
2:
3:
4:
5:
6:
7:
8:
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder">

 $newthread_icons
</table>
</form>
<br />



und das bei newthread, pms, usw... auch!

Also:
immer zuerst das $newthread_icons löschen an der alten stelle.
und an der neuen Stelle dann immer
code:
1:
2:
3:
4:
5:
6:
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder">

 $newthread_icons
</table>

einfügen...

Die Stelle wo du das einfügen musst müsste normalerweise immer genau vor dem </form> sein. Nach dem </form> wäre es noch für die Ansicht schöner, wenn du ein <br /> setzt!

Vor dem </form> befindet sich normalerweise glaub ich immer ein </p>


Also, dass das dann in den Templates immer so ausschaut:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
</p>


<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder">

 $newthread_icons
</table>
</form>
<br />

Sammy11
Hi...

Habe jetzt alles geändert...

vielen dank, hat super geklappt

lg
sammy