kostenloser Webspace werbefrei: lima-city


Script Problem

lima-cityForumSonstigesSpam und sonstiges Unvergütetes

  1. Autor dieses Themas

    t**************y

    Hallo Leute,

    ich habe folgendes Problem.
    Mein CMS System aktzeptiert nur Scripts im Header die mit <script> beginnen.
    Mein Partnerprogrammcode sieht aber so aus:
    <div id="banner_peel_R" style="overflow: hidden; position: absolute; width: 100px; height:100px; z-index: 0; right: 0px; top: 0px; padding-bottom:10px; padding-left: 10px;">
                      <embed style="position:relative;left:-400px;" name="banner_peel_R_sub"
                      id="banner_peel_R_sub"
                      flashvars="bannertype=R&bannerwidth=500&bannerheight=500&img=http://www.auxmoney-partnerprogramm.de/accounts/default1/banners/pagepeel_1-3.jpg&smallimg=http://www.auxmoney-partnerprogramm.de/accounts/default1/banners/test.png&link=https%3A%2F%2Fwww.auxmoney.com%2Fstart%2Fwelcome.php%3Fafid%3D10002064%26a_bid%3D32397841&scrolltxt=&bigtxt=&bgcolor=0xFF5810&textcolor=CC0000&smallperc=20"
                      scale="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer"
                      type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent"
                      src="http://www.auxmoney-partnerprogramm.de/include/Pap/Features/PagePeelBanner/EdgeBanner/edgeBanner.swf" height="500" width="500">
                      </div><img style="border: 0pt none ;" src="http://www.auxmoney-partnerprogramm.de/scripts/imp.php?afid=10002064&a_bid=32397841" alt="" height="1" width="1"><script type='text/javascript'>
                          function peelbannerbefore(type,w,h)
                          {
                              var peel = document.getElementById('banner_peel_'+type);
                                peel.style.width='500px';
                                peel.style.height='500px';
                                if(type=='R')
                                  document.getElementById('banner_peel_'+type+'_sub').style.left='0px';
                                peel.style.zIndex=1000;
                          }
                          function peelbannerafter(type,w,h)
                          {
                              var peel = document.getElementById('banner_peel_'+type);
                                if(type=='R')
                                    document.getElementById('banner_peel_'+type+'_sub').style.left=-400 + 'px';
                                peel.style.width='100px';
                                peel.style.height='100px';
                                peel.style.zIndex=0;
    
                          }
                          </script>


    Könnt ihr mir helfen den umzubauen?

    Mfg.
  2. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

  3. Versuch das mal.



    <script>
    <div id="banner_peel_R" style="overflow: hidden; position: absolute; width: 100px; height:100px; z-index: 0; right: 0px; top: 0px; padding-bottom:10px; padding-left: 10px;">
                      <embed style="position:relative;left:-400px;" name="banner_peel_R_sub"
                      id="banner_peel_R_sub"
                      flashvars="bannertype=R&bannerwidth=500&bannerheight=500&img=http://www.auxmoney-partnerprogramm.de/accounts/default1/banners/pagepeel_1-3.jpg&smallimg=http://www.auxmoney-partnerprogramm.de/accounts/default1/banners/test.png&link=https%3A%2F%2Fwww.auxmoney.com%2Fstart%2Fwelcome.php%3Fafid%3D10002064%26a_bid%3D32397841&scrolltxt=&bigtxt=&bgcolor=0xFF5810&textcolor=CC0000&smallperc=20"
                      scale="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer"
                      type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent"
                      src="http://www.auxmoney-partnerprogramm.de/include/Pap/Features/PagePeelBanner/EdgeBanner/edgeBanner.swf" height="500" width="500">
                      </div><img style="border: 0pt none ;" src="http://www.auxmoney-partnerprogramm.de/scripts/imp.php?afid=10002064&a_bid=32397841" alt="" height="1" width="1"><script type='text/javascript'>
                          function peelbannerbefore(type,w,h)
                          {
                              var peel = document.getElementById('banner_peel_'+type);
                                peel.style.width='500px';
                                peel.style.height='500px';
                                if(type=='R')
                                  document.getElementById('banner_peel_'+type+'_sub').style.left='0px';
                                peel.style.zIndex=1000;
                          }
                          function peelbannerafter(type,w,h)
                          {
                              var peel = document.getElementById('banner_peel_'+type);
                                if(type=='R')
                                    document.getElementById('banner_peel_'+type+'_sub').style.left=-400 + 'px';
                                peel.style.width='100px';
                                peel.style.height='100px';
                                peel.style.zIndex=0;
    
                          }


    Beitrag zuletzt geändert: 16.7.2011 14:24:00 von nighteyes89
  4. t*****b

    Welches CMS verwendest du?
  5. Header und Header sind Zweierlei. Es gibt den sog. Head-Bereich:

    <head>
    ...
    </head>


    In diesem Bereich haben Container, usw. nichts zu suchen. Da gehören Scripts, Metatags, CSS-Anweisungen usw. rein.

    Was du meinst ist der Header. Dieser befindet sich aber im Body-Bereich:

    <body>
    ....
    </body>


    dort passt auch dein Code rein.
  6. Eigentlich müsste man das Script aber auch im Body Bereich starten müssen.
  7. Das ist doch, was ich sagte ;) Im Head-Bereich kann das nicht gehen.
  8. Autor dieses Themas

    t**************y

    nighteyes89 schrieb:
    Versuch das mal.



    <script>
    <div id="banner_peel_R" style="overflow: hidden; position: absolute; width: 100px; height:100px; z-index: 0; right: 0px; top: 0px; padding-bottom:10px; padding-left: 10px;">
                      <embed style="position:relative;left:-400px;" name="banner_peel_R_sub"
                      id="banner_peel_R_sub"
                      flashvars="bannertype=R&bannerwidth=500&bannerheight=500&img=http://www.auxmoney-partnerprogramm.de/accounts/default1/banners/pagepeel_1-3.jpg&smallimg=http://www.auxmoney-partnerprogramm.de/accounts/default1/banners/test.png&link=https%3A%2F%2Fwww.auxmoney.com%2Fstart%2Fwelcome.php%3Fafid%3D10002064%26a_bid%3D32397841&scrolltxt=&bigtxt=&bgcolor=0xFF5810&textcolor=CC0000&smallperc=20"
                      scale="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer"
                      type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent"
                      src="http://www.auxmoney-partnerprogramm.de/include/Pap/Features/PagePeelBanner/EdgeBanner/edgeBanner.swf" height="500" width="500">
                      </div><img style="border: 0pt none ;" src="http://www.auxmoney-partnerprogramm.de/scripts/imp.php?afid=10002064&a_bid=32397841" alt="" height="1" width="1"><script type='text/javascript'>
                          function peelbannerbefore(type,w,h)
                          {
                              var peel = document.getElementById('banner_peel_'+type);
                                peel.style.width='500px';
                                peel.style.height='500px';
                                if(type=='R')
                                  document.getElementById('banner_peel_'+type+'_sub').style.left='0px';
                                peel.style.zIndex=1000;
                          }
                          function peelbannerafter(type,w,h)
                          {
                              var peel = document.getElementById('banner_peel_'+type);
                                if(type=='R')
                                    document.getElementById('banner_peel_'+type+'_sub').style.left=-400 + 'px';
                                peel.style.width='100px';
                                peel.style.height='100px';
                                peel.style.zIndex=0;
    
                          }


    Klappt leider nicht.
    Ich benutze Jimdo.
    Vielleicht kann das helfen :king:
  9. Sehe gerade das du ein Peel einbauen willst.
    Willst du die Werbung nicht lieber weglassen ^^

    Poste mal bitte die Index.html des templates und die index.php des CMS

    Beitrag zuletzt geändert: 22.8.2011 16:53:02 von nighteyes89
  10. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

Dir gefällt dieses Thema?

Über lima-city

Login zum Webhosting ohne Werbung!