Seite 1 von 1

kleine doofe frage

Verfasst: 18.01.2006 16:00
von serbe0
hmmm ich hab hier mal ne doofe frage.. aber ich weiss echt nicht weiter!
wie kann ich bei meinem forum einen HTML code eingeben?
ich hab einen html code für eine shoutbox gefunden und kopiert! aber wenn ich es in einen beitrag einfüge kommt nicht das ergebnis sondern der von mir eingefügte code....

ich hab es auchs chon mit [html]*****[/html] versucht aber das wirkt auch nicht...

könnt ihr mir bitte helfen?

Verfasst: 18.01.2006 16:10
von Miroerr
Du musst die HTML Tags im ACP auch aktivieren.

Verfasst: 18.01.2006 16:19
von serbe0
wenn du den adminbereich meinst, dann hab ichs eh!
im admin bereich steht: HTML AKZEPTIEREN? und ich hab auf JA

aber trozdehm funckt das irrgendwie nicht.....
ich kann auch wenn ich irrgendwo reinposte unten auf "HTML in diesem Beitrag deaktivieren" klicken...
bitte um hilfe!

Verfasst: 18.01.2006 16:46
von She´s a rebel
also wenn ich dich richtig verstehe woltlest du in dein forum eine shoutbox einfügen oder?!

wenns das ist, dann muss du deine dateien editieren!



[/code]

Verfasst: 18.01.2006 16:50
von serbe0
axo ich glaub ich verstehe.....

ich hab code nur dazu verwendet um anderen usern meines forums zu zeigen wie etwas funktionier... z.b: hab ich alle smilies die ich runtergeladen habe in [/code] reingemacht oder eine liste [/list] wie man das macht hab icha uch in code reingeposted.. ty! ich werde das auch gleich probieren :D

Verfasst: 03.02.2006 11:31
von serbe0
naja bei mir geht das mit dem html immernochnicht!
mit [/code] funktioniert es auch nicht :( schade

ich hab hier nen code für nen leutenden scrollbalken:
<html>
<body bgcolor=#000000 text=#ffffff link=#ccff88 vlink=ccff88 alink=#ccff88>
<script>
// (C) 2000 by CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header
// blink speed in miliseconds
var rate = 333;
// true to start automatically, else false
var DoIt = true
// the three blink colors
var Color1 = "#FF0000"
var Color2 = "#00FF00"
var Color3 = "#0000FF"
// the color if/when turned off
var ColorX = "#C0C0C0"
var i = 0;
function doTriStateRainbow(){
if (document.all){
if (DoIt){
i++;
if (i==1) C = Color1
if (i==2) C = Color2
if (i==3) C = Color3
document.body.style.scrollbarBaseColor = C
if (i>2) i=0;
timer=setTimeout('doTriStateRainbow()', rate)
}else{
document.body.style.scrollbarBaseColor = ColorX
}
}
}
</script>
<body onload="doTriStateRainbow()">
Blinkende Scroll-Leiste aus und an schalten<BR>
<a href="#" onClick="DoIt=false">AUS</a> / <a href="#" onClick="DoIt=true;doTriStateRainbow()">AN</a>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
</body></html>


und hier stecke ich es in ein code:

Code: Alles auswählen

<html>
 <body bgcolor=#000000 text=#ffffff link=#ccff88 vlink=ccff88 alink=#ccff88>
 <script>
 // (C) 2000 by CodeLifter.com
 // http://www.codelifter.com
 // Free for all users, but leave in this  header
 // blink speed in miliseconds
 var rate = 333;
 // true to start automatically, else false
 var DoIt = true
 // the three blink colors
 var Color1 = "#FF0000"
 var Color2 = "#00FF00"
 var Color3 = "#0000FF"
 // the color if/when turned off
 var ColorX = "#C0C0C0"
 var i = 0;
 function doTriStateRainbow(){
    if (document.all){
       if (DoIt){
          i++;
          if (i==1) C = Color1
          if (i==2) C = Color2
          if (i==3) C = Color3
          document.body.style.scrollbarBaseColor = C
          if (i>2) i=0;
          timer=setTimeout('doTriStateRainbow()', rate)
       }else{
          document.body.style.scrollbarBaseColor = ColorX
       }
    }
 }
 </script>
 <body onload="doTriStateRainbow()">
 Blinkende Scroll-Leiste aus und an schalten<BR>
 <a href="#" onClick="DoIt=false">AUS</a> / <a href="#" onClick="DoIt=true;doTriStateRainbow()">AN</a>
 <BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
 </body></html>

(bei euch ist HTML aus aber bei mir ist es AN und es funktioniert trozdehm nicht)

BITTE HELFEN!!!!!