Die Codes habe ich, weiß aber nicht, wie setze ich es um.
Soweit funktioniert alles. Aber der Code soll in die obere Leiste (Template Entwicklung) eingefügt werden, links neben dem Text, Registrieren...oder im Headerbild.
/* The sidepanel menu */ .sidepanel { height: 250px; /* Specify a height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 1; /* Stay on top */ top: 0; left: 0; background-color: #111; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */ }
/* When you mouse over the navigation links, change their color */ .sidepanel a:hover { color: #f1f1f1; }
/* Position and style the close button (top right corner) */ .sidepanel .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; }
/* Style the button that is used to open the sidepanel */ .openbtn { font-size: 20px; cursor: pointer; background-color: #111; color: white; padding: 10px 15px; border: none; }
Hallo Anne, das Gaia ist mit wenig "classes" ausgerüstet, da ist es nicht immer einfach etwas einzufügen ohne das Template zu verändern!
Du schreibst etwas von "Registrieren"... Soll das Menü nur für Gäste angezeigt werden? Ich habe hier ein Vorschlag, mit dem der Menü-Button "Willkommen" über "Als Gast ist es nicht möglich dieses Forum einzusehen." angeordnet wird.
Das komplette Skript kann in die Kopf- oder Fußzeile kopiert werden! Habe den Wert in Zeile 8 von "top:0" auf "top:30px" gesetzt, damit das Menü nicht die Login-Zeile verdeckt! Deine Div's habe ich über Zeile 58-74 mit "prepend" platziert. Das Template wird nicht verändert!
Frage: Wofür brauchst Du Zeile 78-84? Die Zeilen werden durch kein "onclick" angesprochen, die ID "mySidebar" gibt es auch nicht! Ich habe sie erstmal auskommentiert....
Das komplette Skript kann in die Kopf- oder Fußzeile kopiert werden!
<style> /* The sidepanel menu */ .sidepanel { height: 250px; /* Specify a height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 1; /* Stay on top */ top: 30px; left: 0; background-color: #111; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */ }
/* When you mouse over the navigation links, change their color */ .sidepanel a:hover { color: #f1f1f1; }
/* Position and style the close button (top right corner) */ .sidepanel .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; }
/* Style the button that is used to open the sidepanel */ .openbtn { font-size: 20px; cursor: pointer; background-color: #111; color: white; padding: 10px 15px; border: none; }
<style> /* The sidepanel menu */ .sidepanel { height: 250px; /* Specify a height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 1; /* Stay on top */ top: 30px; left: 0; background-color: #111; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */ }
/* When you mouse over the navigation links, change their color */ .sidepanel a:hover { color: #f1f1f1; }
/* Position and style the close button (top right corner) */ .sidepanel .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; }
/* Style the button that is used to open the sidepanel */ .openbtn { text-decoration: none !important; } </style>
<style> /* The sidepanel menu */ .sidepanel { height: 250px; /* Specify a height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 1; /* Stay on top */ margin-top: 0; left: 0; background-color: #111; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */ z-index: 999999; }
/* When you mouse over the navigation links, change their color */ .sidepanel a:hover { color: #f1f1f1; }
/* Position and style the close button (top right corner) */ .sidepanel .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; }
/* Style the button that is used to open the sidepanel */ .openbtn { position: absolute; z-index:999998; left:0; top:0; font-size: 20px; cursor: pointer; background-color: #111; color: white; padding: 10px 15px; border: none; margin-bottom:10px; }