Do it yourself: CSS für Profil und Blog
04.04.2015 um 17:36Ich hab das Problem mein last.view wandert mit jedem neuem Besucher ein Stück weiter runter kann man da was machen ?
/* Horizontales und mittig zentriertes Custom
Dropdown Menue mit Fade- Effekt und Allmy-Links.
Viel Spass beim basteln ;) VLG, S_C */
.ctn_menu {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: 400;
margin: 30px auto 0px auto;
padding: 0px 0px 0px 0px;
text-align: center;
position: relative;
background: #000;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}
ul.custom_menu {
text-align: left;
display: inline;
margin: 0px 0px 0px 0px;
padding: 15px 4px 17px 0;
list-style: none;
}
ul.custom_menu li {
color: #fff;
display: inline-block;
margin-right: -3px;
position: relative;
padding: 15px 20px 15px 20px;
background: #40404c;
cursor: pointer;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5 sease-in-out;
-ms-transition: all 0.5 sease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
ul.custom_menu li:hover {
background: #404040;
color: #fff;
}
ul.custom_menu li ul {
padding: 0;
position: absolute;
top: 46px; /* abstand der dropdown box zum darueberliegendem button */
left: 0;
width: auto;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
display: none;
opacity: 0;
filter: Alpha(Opacity=0);
visibility: hidden;
-webkit-box-shadow: 4px 4px 4px -1px rgba(0,0,0,0.6);
-moz-box-shadow: 4px 4px 4px -1px rgba(0,0,0,0.6);
box-shadow: 4px 4px 4px -1px rgba(0,0,0,0.6);
-webkit-transiton: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-ms-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
-transition: opacity 0.5s ease-in-out;
}
ul.custom_menu li ul li {
background: #404040;
display: block;
color: #fff;
border-bottom: solid 1px #000;
}
ul.custom_menu li ul li:nth-child(odd) {
background: #40404c;
}
ul.custom_menu li ul li:first-child {
border-top: solid 1px #000;
}
ul.custom_menu li ul li:hover {
background: #404040;
}
ul.custom_menu li:hover ul {
display: block;
opacity: 1;
filter: Alpha(Opacity=100);
visibility: visible;
}
.custom_menu li a {
color: #fff;
text-decoration: none;
list-style: none;
}
form.AsLink button {
padding: 0px !important;
text-transform: uppercase;
}
<!-- start container dropdow nmenue -->
<ul class="custom_menu"><!-- start css3 dropdownmenue -->
[li][IMG]/static/images/heartbeat2.gif" style="border:none;height:13px;width:auto;margin:0px;"/> Allmystery
[ul]
[li][url=https://www.allmystery.de/][/li]
[li]<a href="https://www.allmystery.de/mitglieder/USERNAME" target="_self" title="">• Mein Profil[/url][/li]<!-- USERNAME aendern -->
[li][url=https://www.allmystery.de/blogs/USERNAME]• Mein Blog[/url][/li]<!-- USERNAME aendern -->
[li][url=https://www.allmystery.de/fcgi/?m=settings]• Einstellungen[/url][/li]
[li][url=https://www.allmystery.de/fcgi/?m=settings_profile]• Profil bearbeiten[/url][/li]
[li][url=https://www.allmystery.de/fcgi/?m=settings_blog]• Blog bearbeiten[/url][/li]
[li]<form action="/deleteSession" method="post" class="AsLink"><button type="submit">• An-/Abmelden ➔</button></form>[/li]
[/ul]
[/li]
[li]• 1. Hauptlink[/li]<!-- #1. hauptlink -->
[li]• 2. Hauptlink[/li]<!-- #2. hauptlink -->
[li]• 3. Hauptlink[/li]<!-- #3. hauptlink -->
[li]Ξ 2. Hauptlink mit Untermenü<!-- #2. hauptlink mit untermenue -->
[ul]
[li]• 1. Untermenü link[/li]<!-- 1. untermenue link -->
[li]• 2. Untermenü link[/li]<!-- 2. untermenue link -->
[li]• 3. Untermenü link[/li]<!-- 3. untermenue link -->
[/li]
[/ul]
[/ul]<!-- ende css3 dropdown menue -->
<!-- ende container dropdown menue -->
Bodo schrieb:Also schwarze Magie wars wahrlich nicht jetztDoch! Da kommt nicht jede/r drauf ;)
[li][IMG]/static/images/heartbeat2.gif" style="border:none;height:13px;width:auto;margin:0px;"/> Allmystery
[ul]
[li]<a href="https://www.allmystery.de/" target="_self" title="[/IMG]• Startseite[/li]
[li]<form action="/deleteSession" method="post" class="AsLink"><button type="submit">• An-/Abmelden ➔</button></form>[/li]
unhold schrieb:target="_self" ist unnötig weil default. ein title-attr. ohne inhaltbeantworte ich mit
S_C schrieb:Ein paar Spielereien wie Sonderzeichen, unterschiedlich eingefärbter background, box-shadow oder nth-child(odd) findet ihr ebenfalls, die dienen gut als Vorlage für weitere Bastel- und Styling Ideen.und
S_C schrieb:... viel Spaß beim tüfteln!Es ging mir darum, den nicht so versierten Bastlern eine gute Plattform für eigene Tüfteleien zu geben.