Seite 1 von 1
Schönheitsfehler :D
Verfasst: 20.06.2005 21:08
von Gast660
Ich habe einen MOD eingebaut, mit dem man den bbcode [center] verwenden kann ...
Doch nun habe ich das Problem, dass die Reihenfolge nicht stimmt:
[ externes Bild ]
Wie bekomme ich es so hin, dass alles in einer Reihe ist ???
Mit einem anderen Style funktioniert es !!!
Verfasst: 20.06.2005 23:55
von punkface
Link zum Forum bzw. Link zur posting_body.tpl ?
Verfasst: 21.06.2005 13:32
von Gast660
Verfasst: 21.06.2005 14:12
von gloriosa
Hallo,
der Abschnitt ab Zeile 356 sieht so aus :
Code: Alles auswählen
<td><span class="genmed">
<input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
<input type="button" class="button" accesskey="y" name="addbbcode18" value=" Center " style="width: 60px" onClick="bbstyle(18)" onMouseOver="helpline('y')" />
</span></td>
</span></td>
und sollte wohl eher so lauten :
Code: Alles auswählen
<td><span class="genmed">
<input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
</span></td>
<td><span class="genmed">
<input type="button" class="button" accesskey="y" name="addbbcode18" value=" Center " style="width: 60px" onClick="bbstyle(18)" onMouseOver="helpline('y')" />
</span></td>
Verfasst: 21.06.2005 15:24
von Gast660
Danke, sieht jetzt wieder alles gut aus
