Registrieren | Passwort vergessen |
Benutzername    Passwort    Eingeloggt bleiben    
Seitenaufbau in 0.55 Sekunden - 358 DB-Abfragen | Mitglieder: 2410 | Forum: 15753 | Downloads: 127 | Insgesamt runtergeladen: 41744 | Insgesamt: 17,483,175 eindeutige Besuche
Guten Tag [Gast]
Wenn Sie bereits Registriert sind loggen Sie sich einfach ein
©
Andreas_neu (04.04.2026 09:45): Lust auf PartnerRadio? Gemeinsam sind wir stärker. https://musikpower.eu Info´s beim Flocke JP_ONAIR (30.11.2025 20:07): Schönen 1. Advent allen User hexer (26.10.2025 17:39): hallo Charly3000 (07.06.2025 22:39): Charlys-Funradio wünsch frohe Pfingsten hexer (01.02.2025 17:43): hallo DerEinsame2 (04.01.2024 14:19): Hallo ihr lieben ich wünsche euch ein Frohes und es Gesundes neues jahr. Chat-Radio24 (02.01.2024 18:36): Ein Frohes neues Jahr wünsche ich allen JP_ONAIR (01.01.2024 16:33): Frohes neues ^^ DerEinsame2 (17.12.2023 18:24): liebe leute ich wünsche euche tolle feiertage, und das beste fürs neue jahr 2024 Radiotv (18.11.2023 19:39): Liebe Grüsse Von www.radiotvmg.de
Datum: Mo.tag, 27. April 2026 Diese Seite Geladen am: 16:12:35Aktuelle Zeit: Zeit
 Wer ist online
Gäste & Bots online: 4
Mitglieder online: 0
Neuestes Mitglied: Krelli

DeviceGiftzwerg
10Min
DeviceRolly8-HLPunkte
Offline
DeviceArminPunkte
Offline
DeviceKrelli
Offline
DeviceHarlekinPunkte
Offline
DeviceDeeoNePunkte
Offline
Device21MatzePunkte
Offline
DevicepartybremenPunkte
Offline
DeviceDj-ScottyPunkte
Offline
DeviceJP_ONAIR
Offline
Gast
gast
Gast
gast
Gast
gast
Gast
gast
Mehr anzeigen

     - SuperAdmin|         - Admin ©
     - Forum Mod |         - Mitglied


 Unwetterwarnung

 Server uptime
Serverchecks bei http://www.my-cronjob.de - Ihr kostenloser Cronjob- und Serverüberwachungsdienst mit Uptime-Statistik für Ihre Homepage

Suche
Durchsuchen Sie die gesamte Website:
Themen-Autor: nivel
Thema ID: 1738
Thema Info
Es gibt 7 Beiträge zu diesem Thema, und es wurde angesehen 1876 mal.
Thema ansehen
..::www.DeeoNe.de-D1Infusionen::.. » Supportbereich phpFusion v7 » Allgemeines
Wer ist hier? 1 Gäste
 Thema drucken
CSS Dropdown Menü - Einbauhilfe
nivel
Hallo ich wollte das Infusion CSS Dropdown Menu an der stelle von meine SubShowLinks ersetzen.

wie muss ich das in der theme abändern das es funktioniert der code der in der beschreibung war ist nur dafür gemacht /admin/banner (banner 1 / banner 2)

Download PHP Code  PHP
  1. <?php
  2. echo "<table cellspacing='0' cellpadding='0' border='0' style='padding-top: 3px;' width='auto' align='center'>\n<tr>\n
  3. <td align='left'>\n";
  4. include INFUSIONS."deluxe_dropdown_menu/menu.php";
  5. echo "</td>\n</tr>\n
  6. </table>\n";
  7. ?>


wie muss ich es nun abändern um ihr hier rein zu bekommen?

Download PHP Code  PHP
  1. <?php
  2.  
  3.     echo "<table align='center' cellpadding='0' cellspacing='0' width='1000'\n<tr>\n";
  4.     echo "<td class='sub-header-left'></td>\n";
  5.     echo "<td class='sub-header'>".showsublinks(" ".THEME_BULLET." ", "white")."</td>\n";
  6.     echo "<td class='sub-header-right'></td>\n";
  7.     echo "</tr>\n</table>\n";
  8. ?>
Verwarnstatus: warningwarningwarningwarning
  x 1
 
http://nidox.eu/v2
Giftzwerg
Probier das mal so


  #echo "<table align='center' cellpadding='0' cellspacing='0' width='1000'\n<tr>\n";
   # echo "<td class='sub-header-left'></td>\n";
   # echo "<td class='sub-header'>".showsublinks(" ".THEME_BULLET." ", "white")."</td>\n";
   # echo "<td class='sub-header-right'></td>\n";
    #echo "</tr>\n</table>\n";




echo "<table cellspacing='0' cellpadding='0' border='0' style='padding-top: 3px;' width='auto' align='center'>\n<tr>\n
<td align='left'>\n";
include INFUSIONS."deluxe_dropdown_menu/menu.php";
echo "</td>\n</tr>\n
</table>\n";





oder eventuell so


if (file_exists(BASEDIR."infusions/deluxe_dropdown_menu/menu.php")) {

echo "<table cellspacing='0' cellpadding='0' border='0' style='padding-top: 3px;' width='auto' align='center'>\n<tr>\n
<td align='left'>\n";
include INFUSIONS."deluxe_dropdown_menu/menu.php";
echo "</td>\n</tr>\n
</table>\n";

}else{

echo "<table align='center' cellpadding='0' cellspacing='0' width='1000'\n<tr>\n";
    echo "<td class='sub-header-left'></td>\n";
    echo "<td class='sub-header'>".showsublinks(" ".THEME_BULLET." ", "white")."</td>\n";
    echo "<td class='sub-header-right'></td>\n";
    echo "</tr>\n</table>\n";

}


ungetestet , aber müsste eigentlich so funktionieren.
Verwarnstatus: warningwarningwarningwarning
  x 1
 
https://radio-ppm.de/
nivel
Hier mein meine theme.php
Download PHP Code  PHP
  1.  
  2. <?php
  3. if (!defined("IN_FUSION")) { die("Access Denied"); }
  4.  
  5. define("THEME_BULLET", "<span class='bullet'><img src='".THEME."/images/bullet.png'></span>");
  6.  
  7. require_once INCLUDES."theme_functions_include.php";
  8.  
  9. function render_page($license=false) {
  10.  
  11.     global $settings, $main_style, $locale;
  12.  
  13.     //Header
  14.  
  15. echo "</br></br></br></br></br></br></br>
  16.   <table align='center' cellspacing='0' cellpadding='0' class='outer-border' id='main'>
  17.     <tr>
  18.       <td>
  19.         <table cellpadding='0' cellspacing='0' width='1000' align='center'>
  20.           <tr>
  21.             <td class='full-header''>
  22.               <table cellpadding='0' cellspacing='0' width='996' align='center'>
  23.                 <tr>
  24.                   <td align='left'>".showbanners()."</td>
  25.                 </tr>
  26.               </table>
  27.             </td>
  28.           </tr>
  29.         </table>
  30.         <table cellpadding='0' cellspacing='0' width='1001' align='center'>
  31. </table>\n";
  32.  
  33.  
  34.  
  35.  
  36.     //Content
  37.     echo "<table cellpadding='0' cellspacing='0' width='1000' align='center' class='$main_style'>\n<tr>\n";
  38.     if (LEFT) { echo "<td class='side-border-left' valign='top'>".LEFT."</td>"; }
  39.     echo "<td class='main-bg' valign='top'>".U_CENTER.CONTENT.L_CENTER."</td>";
  40.     if (RIGHT) { echo "<td class='side-border-right' valign='top'>".RIGHT."</td>"; }
  41.     echo "</tr>\n</table>\n";
  42.  
  43.     //Footer
  44.     echo "
  45.           </tr>
  46.         </table>
  47.         <table cellpadding='0' cellspacing='0' width='1000' align='center'>
  48.           <tr>
  49.             <td align='center' class='footer'>".stripslashes($settings&#91;'footer'&#93;)."<br />\n";
  50.               echo "Design: <a href='https://lmx24.lima-city.de/index.php'>Niveldrom & DoktorSteel</a><br />\n";
  51.               if (!$license) { echo showcopyright()."<br />"; } echo showcounter(). "<br />"; echo showsubdate()."<br />
  52.             </td>
  53.           </tr>
  54.         </table>
  55.       </td>
  56.     </tr>
  57. </table>\n";
  58.  
  59. }
  60.  
  61. function render_news($subject, $news, $info) {
  62.  
  63.     echo "<table cellpadding='0' cellspacing='0' width='1000'>\n<tr>\n";
  64.     echo "<td class='capmain-left'></td>\n";
  65.     echo "<td class='capmain'>".$subject."</td>\n";
  66.     echo "<td class='capmain-right'></td>\n";
  67.     echo "</tr>\n</table>\n";
  68.     echo "<table width='100%' cellpadding='0' cellspacing='0' class='spacer'>\n<tr>\n";
  69.     echo "<td class='main-body middle-border'>".$news."</td>\n";
  70.     echo "</tr>\n<tr>\n";
  71.     echo "<td align='center' class='news-footer middle-border'>\n";
  72.     echo newsposter($info," &middot;").newsopts($info,"&middot;").itemoptions("N",$info&#91;'news_id'&#93;);
  73.     echo "</td>\n";
  74.     echo "</tr>\n</table>\n";
  75.  
  76. }
  77.  
  78. function render_article($subject, $article, $info) {
  79.  
  80.     echo "<table width='100%' cellpadding='0' cellspacing='0'>\n<tr>\n";
  81.     echo "<td class='capmain-left'></td>\n";
  82.     echo "<td class='capmain'>".$subject."</td>\n";
  83.     echo "<td class='capmain-right'></td>\n";
  84.     echo "</tr>\n</table>\n";
  85.     echo "<table width='100%' cellpadding='0' cellspacing='0' class='spacer'>\n<tr>\n";
  86.     echo "<td class='main-body middle-border'>".($info&#91;'article_breaks'&#93; == "y" ? nl2br($article) : $article)."</td>\n";
  87.     echo "</tr>\n<tr>\n";
  88.     echo "<td align='center' class='news-footer'>\n";
  89.     echo articleposter($info," &middot;").articleopts($info,"&middot;").itemoptions("A",$info&#91;'article_id'&#93;);
  90.     echo "</td>\n</tr>\n</table>\n";
  91.  
  92. }
  93.  
  94. function opentable($title) {
  95.  
  96.     echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
  97.     echo "<td class='capmain-left'></td>\n";
  98.     echo "<td class='capmain'>".$title."</td>\n";
  99.     echo "<td class='capmain-right'></td>\n";
  100.     echo "</tr>\n</table>\n";
  101.     echo "<table cellpadding='0' cellspacing='0' width='100%' class='spacer'>\n<tr>\n";
  102.     echo "<td class='main-body'>\n";
  103.  
  104. }
  105.  
  106. function closetable() {
  107.  
  108.     echo "</td>\n";
  109.     echo "</tr>\n</table>\n";
  110.  
  111. }
  112.  
  113. function openside($title, $collapse = false, $state = "on") {
  114.  
  115.     global $panel_collapse; $panel_collapse = $collapse;
  116.  
  117.     echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
  118.     echo "<td class='scapmain-left'></td>\n";
  119.     echo "<td class='scapmain'>$title</td>\n";
  120.     if ($collapse == true) {
  121.         $boxname = str_replace(" ", "", $title);
  122.         echo "<td class='scapmain' align='right'>".panelbutton($state, $boxname)."</td>\n";
  123.     }
  124.     echo "<td class='scapmain-right'></td>\n";
  125.     echo "</tr>\n</table>\n";
  126.     echo "<table cellpadding='0' cellspacing='0' width='100%' class='spacer'>\n<tr>\n";
  127.     echo "<td class='side-body'>\n";
  128.     if ($collapse == true) { echo panelstate($state, $boxname); }
  129.  
  130. }
  131.  
  132. function closeside() {
  133.  
  134.     global $panel_collapse;
  135.  
  136.     if ($panel_collapse == true) { echo "</div>\n"; }
  137.     echo "</td>\n</tr>\n</table>\n";
  138.  
  139. }
  140. ?>
  141.  


Zusammengefügt am 17. Juli 2016 12:38:29:
Orginal theme.php

Download PHP Code  PHP
  1. <?php
  2. if (!defined("IN_FUSION")) { die("Access Denied"); }
  3.  
  4. define("THEME_BULLET", "<span class='bullet'><img src='".THEME."/images/bullet.png'></span>");
  5.  
  6. require_once INCLUDES."theme_functions_include.php";
  7.  
  8. function render_page($license=false) {
  9.  
  10.     global $settings, $main_style, $locale;
  11.  
  12.     //Header
  13.     echo "<table align='center' cellpadding='0' cellspacing='0'\n<tr>\n";
  14.     echo "<td class='sub-header-left'></td>\n";
  15.     echo "<td class='sub-header'>".showsublinks(" ".THEME_BULLET." ", "white")."</td>\n";
  16.     echo "<td align='right' class='sub-header'>".showsubdate()."</td>\n";
  17.     echo "<td class='sub-header-right'></td>\n";
  18.     echo "</tr>\n</table>\n";
  19.  
  20.     echo "<table cellspacing='0' cellpadding='0'><tr><td align='left'><img src='".THEME."/images/banner-left.png'></td>
  21.     <td align='center' class='banner' width='100%'>\n".showbanners()."</td>
  22.     <td align='right'><img src='".THEME."/images/banner-right.png'></td>
  23.     </tr></table>\n";
  24.  
  25.  
  26.     //Content
  27.     echo "<table cellpadding='0' cellspacing='0' width='100%' class='$main_style'>\n<tr>\n";
  28.     if (LEFT) { echo "<td class='side-border-left' valign='top'>".LEFT."</td>"; }
  29.     echo "<td class='main-bg' valign='top'>".U_CENTER.CONTENT.L_CENTER."</td>";
  30.     if (RIGHT) { echo "<td class='side-border-right' valign='top'>".RIGHT."</td>"; }
  31.     echo "</tr>\n</table>\n";
  32.  
  33.     //Footer
  34.     echo "</tr>\n</table>\n";
  35.     echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
  36.     echo "<td class='down-left'></td>\n";
  37.     echo "<td align='left' class='down-c'>Design created by <a href='mailto:<script type='text/javascript'>/*<![CDATA[*/ML="ole/fyabjxxxxtmh@c_>=i.:' ru";MI="96FxxxxG24AE;6B1:0D700;?7HH;?822=56xxxx00C>0;E@700;?7HH;?822=56xxxx00C>0;936@";ML=ML.replace(/xxxx/g, '<');MI=MI.replace(/xxxx/g, '<');OT="";for(j=0;j < MI.length;j++){OT+=ML.charAt(MI.charCodeAt(j)-48);}document.write(OT);/*]]>*/</script>'>kuki</a> | Coded by <a     href='mailto:<script type='text/javascript'>/*<![CDATA[*/ML="f=h c3>r'ytiwm./@lxxxxoa_:e";MI="BD327G018=D;A:CFGxxxxGE5xxxx5@D92CC>4C=86GxxxxGE5xxxx5@D92CC>4C=B?D6";ML=ML.replace(/xxxx/g, '<');MI=MI.replace(/xxxx/g, '<');OT="";for(j=0;j < MI.length;j++){OT+=ML.charAt(MI.charCodeAt(j)-48);}document.write(OT);/*]]>*/</script>'>eWe</a><br />Theme by <a href='http://gfxpixel.info'>GFXpixel.info</a><br />".showcounter()."";
  38.     echo "<td align='right' class='down-c'> ".stripslashes($settings&#91;'footer'&#93;);
  39.     if (!$license) { echo "\n".showcopyright(); echo "<br />Downloaded from Dutch support site: <a href='http://www.phpfusion-nederlands.info'".    $link_class.">pHpFusion-Nederlands</a>."; }
  40.     echo "</td>\n";
  41.     echo "<td class='down-right'></td>\n";
  42.     echo "</tr>\n</table>\n";
  43.  
  44. }
  45.  
  46. function render_news($subject, $news, $info) {
  47.  
  48.     echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
  49.     echo "<td class='capmain-left'></td>\n";
  50.     echo "<td class='capmain'>".$subject."</td>\n";
  51.     echo "<td class='capmain-right'></td>\n";
  52.     echo "</tr>\n</table>\n";
  53.     echo "<table width='100%' cellpadding='0' cellspacing='0' class='spacer'>\n<tr>\n";
  54.     echo "<td class='main-body middle-border'>".$news."</td>\n";
  55.     echo "</tr>\n<tr>\n";
  56.     echo "<td align='center' class='news-footer middle-border'>\n";
  57.     echo newsposter($info," &middot;").newsopts($info,"&middot;").itemoptions("N",$info&#91;'news_id'&#93;);
  58.     echo "</td>\n";
  59.     echo "</tr>\n</table>\n";
  60.  
  61. }
  62.  
  63. function render_article($subject, $article, $info) {
  64.  
  65.     echo "<table width='100%' cellpadding='0' cellspacing='0'>\n<tr>\n";
  66.     echo "<td class='capmain-left'></td>\n";
  67.     echo "<td class='capmain'>".$subject."</td>\n";
  68.     echo "<td class='capmain-right'></td>\n";
  69.     echo "</tr>\n</table>\n";
  70.     echo "<table width='100%' cellpadding='0' cellspacing='0' class='spacer'>\n<tr>\n";
  71.     echo "<td class='main-body middle-border'>".($info&#91;'article_breaks'&#93; == "y" ? nl2br($article) : $article)."</td>\n";
  72.     echo "</tr>\n<tr>\n";
  73.     echo "<td align='center' class='news-footer'>\n";
  74.     echo articleposter($info," &middot;").articleopts($info,"&middot;").itemoptions("A",$info&#91;'article_id'&#93;);
  75.     echo "</td>\n</tr>\n</table>\n";
  76.  
  77. }
  78.  
  79. function opentable($title) {
  80.  
  81.     echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
  82.     echo "<td class='capmain-left'></td>\n";
  83.     echo "<td class='capmain'>".$title."</td>\n";
  84.     echo "<td class='capmain-right'></td>\n";
  85.     echo "</tr>\n</table>\n";
  86.     echo "<table cellpadding='0' cellspacing='0' width='100%' class='spacer'>\n<tr>\n";
  87.     echo "<td class='main-body'>\n";
  88.  
  89. }
  90.  
  91. function closetable() {
  92.  
  93.     echo "</td>\n";
  94.     echo "</tr>\n</table>\n";
  95.  
  96. }
  97.  
  98. function openside($title, $collapse = false, $state = "on") {
  99.  
  100.     global $panel_collapse; $panel_collapse = $collapse;
  101.  
  102.     echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
  103.     echo "<td class='scapmain-left'></td>\n";
  104.     echo "<td class='scapmain'>$title</td>\n";
  105.     if ($collapse == true) {
  106.         $boxname = str_replace(" ", "", $title);
  107.         echo "<td class='scapmain' align='right'>".panelbutton($state, $boxname)."</td>\n";
  108.     }
  109.     echo "<td class='scapmain-right'></td>\n";
  110.     echo "</tr>\n</table>\n";
  111.     echo "<table cellpadding='0' cellspacing='0' width='100%' class='spacer'>\n<tr>\n";
  112.     echo "<td class='side-body'>\n";
  113.     if ($collapse == true) { echo panelstate($state, $boxname); }
  114.  
  115. }
  116.  
  117. function closeside() {
  118.  
  119.     global $panel_collapse;
  120.  
  121.     if ($panel_collapse == true) { echo "</div>\n"; }
  122.     echo "</td>\n</tr>\n</table>\n";
  123.  
  124. }
  125. ?>
  126.  

Bearbeitet von nivel am 17-07-2016 12:38
Verwarnstatus: warningwarningwarningwarning
  x 1
 
http://nidox.eu/v2
matze
Am besten in den ,,full header,, includen. Da dort noch eine tabelle definiert wird.
Homematic CCU3,-Synology NAS 4TB,- 2 Sonos One,- Gigabyte N4500 8GB DDR4 2TB
Verwarnstatus: warningwarningwarningwarning
 
https://fusion-mods.de
nivel
danke matze und giftzwerg Wink
Verwarnstatus: warningwarningwarningwarning
  x 1
 
http://nidox.eu/v2
matze
Nur noch defienieren..dan passt es
Homematic CCU3,-Synology NAS 4TB,- 2 Sonos One,- Gigabyte N4500 8GB DDR4 2TB
Verwarnstatus: warningwarningwarningwarning
 
https://fusion-mods.de
RHBGucky
Endlich mein Problem gelöst Musik
Verwarnstatus: warningwarningwarningwarning
 
https://heart-soul-radio.de
Springe ins Forum:
Ähnliche Themen
Thema Forum Antworten Letzter Beitrag
DHTML-Menü Allgemeines 17 15-04-2026 21:32
deluxe dropdown menu Diskussions Bereich 2 28-05-2024 20:07
Link Fehler im Menü Fehler & Bugs 3 30-03-2022 22:25
Drop down menü includen ( Fehler ) Fehler & Bugs 5 30-08-2020 21:08
Mega Menü Allgemeines 7 27-12-2017 20:20
©
Sämtliche Grafiken und Texte dieser Seite unterliegen dem Urheberrecht und dürfen nicht ohne Erlaubnis kopiert werden!!!
©