MyBB.de Forum
<BODY onload="..."> ? - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Sonstiges (https://www.mybb.de/forum/forum-1.html)
+--- Forum: Programmierung (https://www.mybb.de/forum/forum-32.html)
+--- Thema: <BODY onload="..."> ? (/thread-3764.html)



<BODY onload="..."> ? - sindbad123 - 07.11.2006

Für eine geplante 3-State-Button-Navigation bräuchte ich ein
Code:
<BODY onload="...">
am Beginn meiner Seiten.
Wie baue ich das ein ? Und vor allem wo ? Wink


RE: <BODY onload="..."> ? - Crasher - 07.11.2006

Hallo Sindbad,

Gehe nach

Admin - CP -> Templates -> ändern/entfernen -> Dein Templateset -> Startseiten Templates -> index.

Dort kannst du es einfügen.

Mfg


RE: <BODY onload="..."> ? - sindbad123 - 07.11.2006

habs gefunden, vielen Dank ! Big Grin


RE: <BODY onload="..."> ? - sindbad123 - 10.11.2006

Habe das <BODY onload="..."> überall in meinem Template statt <body> eingefügt und das klappt prima jetzt auf Forumseiten.
Aber wo wird das <body> für eigene Seiten erzeugt ?!
Im Template ja nicht.

Aber


RE: <BODY onload="..."> ? - Michael - 10.11.2006

Das <body> sollte sich im Template für die Seite befinden. Ein Grundtemplate sieht so aus:
Code:
<html>
<head>
<title>{$settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<!-- Inhalt hier -->
{$footer}
</body>
</html>



RE: <BODY onload="..."> ? - sindbad123 - 10.11.2006

Danke Michael,
gerade da war ich nicht draufgekommen.
Jetzt geht´s Big Grin