Suche / Frage ?!? Links Aufgehende Navi

Dieses Thema im Forum "Webentwicklung" wurde erstellt von Fenerbahce07, 4. Februar 2007 .

Schlagworte:
  1. 4. Februar 2007
    Hallo Leute
    Ich weiss ned wo ich die Navi in ACP einfügen soll in Welche templates genau könnt ihr mir mal bitte antworten und hin schreiben wo ich die hinzufügen soll damit sie in den beiträge und editeren und index und und und angezeigt wird.

    <script language=javascript>
    NS6 = (document.getElementById&&!document.all)
    IE = (document.all)
    NS = (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4")
    moving=setTimeout('null',1);
    lastY = 0;
    function moveOut() {
    if ((NS6 && parseInt(ssm.left)<0)||(IE && ssm.style.pixelLeft<0)||(NS && document.ssm.left<0))
    {
    clearTimeout(moving);moving = setTimeout('moveOut()', slideSpeed)
    if (NS6){
    ssm.left = parseInt(ssm.left)+10+"px";
    }
    if (IE){
    ssm.style.pixelLeft += 10;
    }
    if (NS){
    document.ssm.left += 10;
    }
    } else {
    clearTimeout(moving);
    moving=setTimeout('null',1);
    }
    }
    function moveBack(){
    clearTimeout(moving);
    moving = setTimeout('moveBack1()', waitTime);
    }
    function moveBack1() {
    if ((NS6 && parseInt(ssm.left)>(-menuWidth))||(IE && ssm.style.pixelLeft>(-menuWidth))||(NS && document.ssm.left>(-menuWidth)))
    {
    clearTimeout(moving);moving = setTimeout('moveBack1()', slideSpeed);
    if (NS6){
    ssm.left = parseInt(ssm.left)-10+"px";
    }
    if (IE){
    ssm.style.pixelLeft -= 10;
    }
    if (NS){
    document.ssm.left -= 10;
    }
    } else {
    clearTimeout(moving);moving=setTimeout('null',1)
    }
    }
    function makeStatic() {
    if (NS6) {
    winY = window.pageYOffset;
    }
    if (IE) {
    winY = document.body.scrollTop;var NM=document.all('ssm').style
    }
    if (NS){
    winY = window.pageYOffset;var NM=document.ssm
    }
    if (NS6||IE||NS){
    if (winY!=lastY&&winY>YOffset-staticYOffset){
    smooth = .2 * (winY - lastY - YOffset + staticYOffset);
    } else if(YOffset-staticYOffset+lastY>YOffset-staticYOffset) {
    smooth = .2 * (winY - lastY);
    } else {
    smooth=0
    }
    if(smooth > 0) smooth = Math.ceil(smooth);
    else smooth = Math.floor(smooth);
    if (NS6) ssm.top=parseInt(ssm.top)+smooth+"px"
    if (IE) NM.pixelTop+=smooth;
    if (NS) NM.top+=smooth;
    lastY = lastY+smooth;
    setTimeout('makeStatic()', 1)
    }
    }
    function initSlide() {
    if (NS6){
    ssm=document.getElementById("ssm").style
    ssm.visibility="visible";
    ssm.left = -menuWidth + "px"; ;
    } else if (IE) {
    ssm.style.visibility = "visible"
    ssm.style.pixelLeft = -menuWidth;
    } else if (NS) {
    document.ssm.left = -menuWidth;
    document.ssm.visibility = "show"
    }
    if (menuIsStatic=="no") makeStatic();
    }
    function startMenu(menuHeader, barText) {
    if (IE||NS6) {
    document.write('<div id="ssm" style="visibility:hidden;position : absolute ;left : 0px ;top : '+YOffset+' ;Z-Index : 20;width:1px" onmouseover="moveOut()" onmouseout="moveBack()">')
    }
    if (NS) {
    document.write('<span class="tablea" layer visibility="hide" top="'+YOffset+'" name="ssm" left="0" onmouseover="moveOut()" onmouseout="moveBack()">')
    }
    if (NS6){
    document.write('<table border="0" cellpadding="0" cellspacing="0" width="'+(menuWidth+barWidth+2)+'" span class="tablea"><tr><td>')
    }
    tempBar=""
    for (i=0;i<barText.length;i++) {
    tempBar+=barText.substring(i, i+1)+"<br>"
    }
    document.write('<table cellpadding="0" cellspacing="2" width="'+(menuWidth+barWidth+2)+'" border="0" class="tableinborder"><tr><td class="tabletitle" width="'+(menuWidth-1)+'" height="6" align="center" valign="center"> <span class="smallfont"><b>'+menuHeader+'</b></span></td><td align="center" rowspan="100" width="'+barWidth+'" span class="tableb" valign="center"><p align="center"><span class="smallfont"><b>'+tempBar+'</b></span></p></td></tr>')
    }
    function addItem(text, link, target) {
    if ( !target ) {
    target = '_self';
    } else {
    target = '_blank';
    }
    document.write('<tr>');
    document.write('<td span class="tablea" width="'+(menuWidth-1)+'">');
    document.write('<ilayer><layer width="100%" align="center">');
    document.write('<div align="center">');
    document.write('<a href="'+link+'" class="ssmItems" target='+target+'>');
    document.write('<span class="smallfont"> '+text+'</span></div></a>');
    document.write('</layer></ilayer></td></tr>');
    }
    function addHdr(text) {
    document.write('<tr><td span class="tabletitle" height="6" align="center" valign="center" width="'+(menuWidth-1)+'"> ');
    document.write('<span class="smallfont"><b>'+text+'</b></span></td></tr>')
    }
    function endMenu() {
    document.write('</table>')
    if (NS6){document.write('</td></tr></table>')}
    if (IE||NS6) {document.write('</div>')}
    if (NS) {document.write('</layer>')}
    if (NS6||IE||NS) setTimeout('initSlide();', 100)
    }
    //-->
     
  2. 5. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    Hallo,

    Das navi muss in die index rein und zwar
    unter das hier

    suche:
    $headinclude
    </head>

    und füge unter </head> dein navie ein

    mfg
    Badboy023
     
  3. 6. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    nur in indey geht es leider nicht weil er dann nciht bei posts angezeigt wird oder bei pns und so weiter
     
  4. 7. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    *Push* Es ist Wichtig Leute Bitte
     
  5. 7. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    machs in den headinclude_template rein... probier ein wenig rum

    einen +punkt haste eh schon, weil man ja auf anhieb weiss im welchen acp du bist...
     
  6. 8. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    naja auf indey ist sie da und auf den theards aber bei den theards über sichten nicht ?
     
  7. 8. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    Also die navi macht man in die index wenn du sie auch in den post selber ahben willst muss sie weder in die tread.tpl oder in die tread_postbit.tpl was aber quatsch ist wenn sie auch in den postings drin ist !!

    Aber in den beiden datein erscheint sie dann auch in dem post wo du sie da einsetzen muss musst du selbst versuchen !!

    mfg
     
  8. 8. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    mhhh weíss ned genau ich wiess ned wie ich das beiden theard übersichten rein mache !
     
  9. 9. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    wbb?

    ...

    <soll kein spam sein!>
     
  10. 10. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    wie wbb ( also bei wbb2 in son theard übersicht wo man die ankündigungen sieht oder andere themen und dann man da druff klicken kann da will ich auch eine navi aber in welche templates?
     
  11. 10. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    eiso gehts um ein wbb?

    das war meine frage, stand nirgends, deswegen die frage...

    eiso der hack soll in den </head> tag rein, schreib die templates einfach ein wenig um und für den hack anschließend in den headerinclude template ein, sollte funktionieren mit wein weing ahung schafft man das un dann wird das menu überall angezeigt. ob es wirklick funktioniert kann ich dir nicht sagen, weil ich den hack noch nie benutzt hatte. mein tipp: probier einfach ein wenig rum, dann klappt das auch
     
  12. 11. Februar 2007
    AW: Suche / Frage ?!? Links Aufgehende Navi

    thx kannste das für mich mal machen ?
     
  13. Video Script

    Videos zum Themenbereich

    * gefundene Videos auf YouTube, anhand der Überschrift.