Frame

    Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

      Hallo,



      habe den GTChat_0.95_-_GTChat_Developer_Version_1.3 installiert.
      In diesem Chat ist ein Frame namens banner.html inkludiert, dieser Frame geht oben komplett durch, sodas die Userliste nach unten Rutscht.
      Wie kann man das ändern. das der Frame banner.html nicht durchgehend ist, und der rechte Frame nach oben rutscht.
      Hoffe ich habe mich verständlich ausgedrückt.
      Den Link zum Chat trage ich noch ein sobald er Richtig funktioniert.

      Danke für eure Hilfe!

      Mfg Manfred

      P.S. Habe einen Screen angehängt zur besseren Erklärung.

      Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von „ManfredMOD“ ()

      Sollte so gehen.

      Quellcode

      1. <frameset rows='*,20% border='0' frameborder='0' framespacing='0'>
      2. <frameset cols='20%,*' border='0' frameborder='0' framespacing='0'>
      3. <frame src='l.htm' name='links' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      4. <frameset rows='20%,*%' border='0' frameborder='0' framespacing='0'>
      5. <frame src='o.htm' name='oben' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      6. <frame src='m.htm' name='main' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      7. </frameset>
      8. </frameset>
      9. <frame src='u.htm' name='unten' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      10. <noframes>
      11. Erstellt mit dem Frames-Generator von <a href='http://www.dauerstress.de'>Dauerstress</a>
      12. </noframes>
      13. </frameset>


      Musst natürlich noch alles anpassen.

      LG
      Speedy

      PS
      Mir ist gerade aufgefallen das ich den Content und die users vertauscht habe.
      Das heisst du musst das frameset drehen.

      Keine mehr da....
      Irgendwie schaff ich des net.
      Hier der Code von der chat.html (siehe Beitrag 1)

      Quellcode

      1. <frameset rows="165,*,87,0" frameborder=0 border=0 framespacing=0 onbeforeunload="doLogout()" onunload="doLogout()">
      2. <frameset cols="*,281">
      3. <frame name=banner src="{GET|$runtime.completeurl}&template=banner" scrolling=no>
      4. <frame name=ticker src="{GET|$runtime.completeurl}&template=ticker" scrolling=no>
      5. </frameset>
      6. <noframes>
      7. Dein Browser unterstüzt keine Frames!
      8. </noframes>
      9. <frameset cols="*,281">
      10. <frame name=messages src="{GET|$runtime.completeurl}&action=messages" scrolling=auto>
      11. <frame name=users src="{GET|$runtime.completeurl}&template=users" scrolling=auto>
      12. </frameset>
      13. <frame name=input src="{GET|$runtime.completeurl}&template=input" scrolling=no>
      14. <frame name=dummy src="dummy.html" scrolling=no noresize>
      15. </frameset>


      Wie mache ich das damit ich es so bekomme wie im Anhang 1ter Beitrag.

      HTML-Quellcode

      1. <!--- plugindir::TemplateEngines/LanguageIndependentTemplateEngine.pm --->
      2. <html>
      3. <head>
      4. {NEED_PERMISSION|user}{NEED|$user_information}
      5. <LINK REL="SHORTCUT ICON" HREF="../www/favicon.ico">
      6. <base href="{GET|$settings.urls.htmlurl}">
      7. <title>{GET|$user_information.nick} im {GET|$settings.chatname}</title>
      8. <script language="JavaScript" src="chat.js" type="text/javascript">
      9. </script>
      10. <script language="JavaScript">
      11. function doLogout()
      12. {
      13. if (!window.exiting)
      14. {
      15. window.exiting = 1;
      16. openCenteredWindow('{GET_JS|$runtime.completeurl}&action=send&text=%2Fquit&textid='+(new Date).getTime()+'&template=message&message=error_logout&image=error','_blank',480,150);
      17. }
      18. }
      19. </script>
      20. </head>
      21. <frameset rows='*,20%' border='0' frameborder='0' framespacing='0'>
      22. <frameset cols='81%,*' border='0' frameborder='0' framespacing='0'>
      23. <frameset rows='20%,*' border='0' frameborder='0' framespacing='0'>
      24. <frame src='{GET|$runtime.completeurl}&template=banner' name='banner' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      25. <frame src='{GET|$runtime.completeurl}&action=messages' name='messages' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      26. </frameset>
      27. <frame src='{GET|$runtime.completeurl}&template=users' name='users' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      28. </frameset>
      29. <frame src='{GET|$runtime.completeurl}&template=input' name='input' marginwidth='0' marginheight='0' scrolling='auto' noresize>
      30. </frameset>
      31. <noframes>
      32. SORRY, Dein Browser unterstützt keine Frames
      33. </noframes>
      34. </frameset>
      35. </html>
      Habe es nun so lösen könne, den Tip fand ich in einem anderen Forum.
      Der Code funktioniert nur mit einer banner.html und gehört in die chat.html

      HTML-Quellcode

      1. <!-- GTChat Developer Version -->
      2. <html>
      3. <head>
      4. <base href="{GET|$settings.urls.htmlurl}">
      5. <title>{GET|$settings.chatname}</title>
      6. <link rel="stylesheet" href="style.css">
      7. <script language="JavaScript" src="chat.js" type="text/javascript">
      8. </script>
      9. <script language="JavaScript">
      10. function doLogout()
      11. {
      12. if (!window.exiting)
      13. {
      14. window.exiting = 1;
      15. openCenteredWindow('{GET_JS|$runtime.completeurl}&action=send&text=%2Fquit&textid='+(new Date).getTime()+'&template=message&message=error_logout&image=error','_blank',480,150);
      16. }
      17. }
      18. </script>
      19. </head>
      20. <!-- <frameset rows="165,*,87,0" frameborder=1 border=0 framespacing=0 onbeforeunload="doLogout()" onunload="doLogout()">
      21. <frameset cols="*,281">
      22. <frame name=banner src="{GET|$runtime.completeurl}&template=banner" scrolling=no>
      23. <frame name=ticker src="{GET|$runtime.completeurl}&template=ticker" scrolling=no>
      24. </frameset>
      25. <noframes>
      26. Dein Browser unterstüzt keine Frames!
      27. </noframes>
      28. <frameset cols="*,281">
      29. <frame name=messages src="{GET|$runtime.completeurl}&action=messages" scrolling=auto>
      30. <frame name=users src="{GET|$runtime.completeurl}&template=users" scrolling=auto>
      31. </frameset>
      32. <frame name=input src="{GET|$runtime.completeurl}&template=input" scrolling=no>
      33. <frame name=dummy src="dummy.html" scrolling=no noresize>
      34. </frameset> -->
      35. <frameset rows="*,87,0" border="0" frameborder="0" framespacing="0">
      36. <frameset cols="*,281" border="0" frameborder="0" framespacing="0">
      37. <frameset rows="165,*" border="0" frameborder="0" framespacing="0">
      38. <frame src="{GET|$runtime.completeurl}&template=banner" name="header" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no">
      39. <frame src="{GET|$runtime.completeurl}&action=messages" name="messages" marginwidth="0" marginheight="0" noresize="noresize" scrolling="auto">
      40. </frameset>
      41. <frame src="{GET|$runtime.completeurl}&template=users" name="users" marginwidth="0" marginheight="0" noresize="noresize" scrolling="auto">
      42. </frameset>
      43. <frame src="{GET|$runtime.completeurl}&template=input" name="input" marginwidth="0" marginheight="0" noresize="noresize" scrolling="no">
      44. <frame name=dummy src="dummy.html" scrolling=no noresize>
      45. </frameset>
      46. </html>


      Mfg Manfred