Suche nach Beiträgen von Honeyduck
Erste Seite | « | 1 ... 5 | 6 | 7 | 8 | 9 ... 43 | » | Letzte
Die Suche lieferte 426 Ergebnisse:
Re: • CSS & HTML: Fragerunde •
von Honeyduck am 08.09.2024 02:45hallo, ich hätte gerne die restlichen ränder auch in schwarz gehabt. also die, die noch grün/blau zu sehen sind.btw, wie schiebe ich mein profilbild in die mitte?wäre dankbar für die links <3
Falls du die Überschrift (Profil von ...) ganz weg haben willst:
/* Erster Buchstabe */
h1:first-letter {
display: none !important;
}
/* Überschrift */
h1 {
display: none !important;
}
h1:first-letter {
display: none !important;
}
/* Überschrift */
h1 {
display: none !important;
}
Gleiches gilt auch für die blauen Pfeile, um zum vorherigen oder nächsten Profil zu wechseln:
/* Profil Preview u. next */
#profileNextPrev {
display: none !important;
}
#profileNextPrev {
display: none !important;
}
Um dein Profilbild in die Mitte zu verschieben, brauchst du diesen Code (der sollte, da du deine Statistik ja ausgeblendet hast, so funktionieren - tut er zumindest bei mir):
/* PROFILBILD MITTIG */
/* Allgemeines */
#profile #profileInfosLeft {
margin-left: 278px;
position: relative;
width: 250px;
}
/* Bild */
#profile #profileImage {
margin-left: 218px;
margin-top: 10px;
position: absolute;
}
/* Persoenliches */
#profile #profileAdvanced {
width: 504px;
margin-left: 1px;
}
/* Allgemeines */
#profile #profileInfosLeft {
margin-left: 278px;
position: relative;
width: 250px;
}
/* Bild */
#profile #profileImage {
margin-left: 218px;
margin-top: 10px;
position: absolute;
}
/* Persoenliches */
#profile #profileAdvanced {
width: 504px;
margin-left: 1px;
}
Bei den Zwischenüberschriften und dem Profilbild musst du noch folgendes einfügen:
box-shadow: 0px 0px 0px 0px #000000 !important;
Um den Rand bei den Boxen zu entfernen (Allgemeines, Statistik & Persönliches) brauchst du folgenden Code:
/* Boxen */
div.box2 {
border-width: 0px !important;
}
div.box2 {
border-width: 0px !important;
}
oder alternativ, wenn du nur die Farbe des Rands ändern willst:
/* Boxen */
div.box2 {
border-color: #000000 !important;
}
div.box2 {
border-color: #000000 !important;
}
Für die Gruppen gilt dieser Code:
/* Gruppenkasten */
.profile_list_groups {
border-width: 0px !important;
}
.profile_list_groups {
border-width: 0px !important;
}
Oder auch eben hier alternativ:
/* Gruppenkasten */
.profile_list_groups {
border-color: #000000 !important;
}
.profile_list_groups {
border-color: #000000 !important;
}
Um den Rahmen der Bilder in der Freundesliste zu ändern:
/* Freundesliste: Profilbilder */
ul.relationships li img {
border-color: #000000 !important;
box-shadow: 0px 0px 0px 0px !important;
}
ul.relationships li img {
border-color: #000000 !important;
box-shadow: 0px 0px 0px 0px !important;
}
oder alternativ, wenn du den Rahmen ganz entfernen willst, auch wieder hier:
/* Freundesliste: Profilbilder */
ul.relationships li img {
border-width: 0px !important;
box-shadow: 0px 0px 0px 0px !important;
}
ul.relationships li img {
border-width: 0px !important;
box-shadow: 0px 0px 0px 0px !important;
}
Für die Optionen, wenn du wirklich alle Linien/Ränder schwarz haben willst, empfehle ich dir den Code (ich habe die Schriftfarbe hier auf weiß gesetzt, sonst sieht man natürlich nichts mehr):
/* Optionen Linien */
.light2 {
background-color: #000000 !important;
}
/* Optionen: Titel */
.profileOptionsTitle {
background-image: url("https://www.colorhexa.com/000000.png") !important;
background-repeat: repeat !important;
color: #ffffff !important;
border-color: #000000 !important;
border-width: 0px !important;
border-style: solid !important;
}
/* Optionen: Menüpunkte */
#profileOptions ul li a {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
border-width: 1px !important;
}
.light2 {
background-color: #000000 !important;
}
/* Optionen: Titel */
.profileOptionsTitle {
background-image: url("https://www.colorhexa.com/000000.png") !important;
background-repeat: repeat !important;
color: #ffffff !important;
border-color: #000000 !important;
border-width: 0px !important;
border-style: solid !important;
}
/* Optionen: Menüpunkte */
#profileOptions ul li a {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
border-width: 1px !important;
}
Und, weil ich vorausschauend denke, für den Kasten für die Geschenke in der Zukunft:
/* Geschenke */
ul.profile_list_gifts {
background-image: url("https://www.colorhexa.com/000000.png") !important;
border-color: #000000 !important;
}
ooooooder (as usual)
/* Geschenke */
ul.profile_list_gifts {
background-image: url("https://www.colorhexa.com/000000.png") !important;
border-width: 0px !important;
}
ul.profile_list_gifts {
background-image: url("https://www.colorhexa.com/000000.png") !important;
border-color: #000000 !important;
}
ooooooder (as usual)
/* Geschenke */
ul.profile_list_gifts {
background-image: url("https://www.colorhexa.com/000000.png") !important;
border-width: 0px !important;
}
Ich glaube, das war es soweit
Re: • CSS & HTML: Fragerunde •
von Honeyduck am 22.08.2024 04:38Hey :) Könnte mir jemand bitte erklären, wie man auf dem Profil im Gruppenkasten eine Scrollbar einbauen kann? Danke <3
Du musst deinem Code für den Gruppenkasten folgendes hinzufügen:
overflow: scroll; height: 100px; }
Das würde dann zum Beispiel so aussehen:
/* Gruppenkasten */
.profile_list_groups {
overflow: scroll;
height: 100px;
}
.profile_list_groups {
overflow: scroll;
height: 100px;
}
Bei "height" gibst du dann einfach nur die gewünsche Höhe für den Kasten ein (:



Antworten