Allmystery
Menschen Wissenschaft Politik Mystery Kriminalfälle Spiritualität Verschwörungen Technologie Ufologie Natur Umfragen Unterhaltung
weitere Rubriken
PhilosophieTräumeOrteEsoterikLiteraturAstronomieHelpdeskGruppenGamingFilmeMusikClashVerbesserungenAllmysteryEnglish
Diskussions-Übersichten
BesuchtTeilgenommenAlleNeueGeschlossenLesenswertSchlüsselwörter
Schiebe oft benutzte Tabs in die Navigationsleiste (zurücksetzen).

Do it yourself: CSS für Profil und Blog

6.815 Beiträge ▪ Schlüsselwörter: Allmystery, Hilfe, Welt ▪ Abonnieren: Feed E-Mail

Do it yourself: CSS für Profil und Blog

12.01.2021 um 21:44
@QonoS
Mit dem folgenden css können deine GB Schreiber zwar noch Pics posten, die werden aber nicht mehr angezeigt:

<style> img.bild { display: none !important; } </style>

Anzeige
melden

Do it yourself: CSS für Profil und Blog

13.01.2021 um 06:06
@S_C
Danke sehr :)


melden

Do it yourself: CSS für Profil und Blog

16.01.2021 um 09:02
@S_C
Gibt es auch einer, damit YouTube videos nicht im GB angezeigt werden können?


melden

Do it yourself: CSS für Profil und Blog

16.01.2021 um 17:20
@QonoS

.gb_post_text a.video { display: none !important; }


1x zitiertmelden

Do it yourself: CSS für Profil und Blog

16.01.2021 um 20:26
@S_C

Vielen Dank :)


melden

Do it yourself: CSS für Profil und Blog

17.01.2021 um 14:04
Zitat von S_CS_C schrieb:.gb_post_text a.video {
display: none !important;
}
Hat leider nicht geklappt, dass Youtube Video in meinem GB sieht man weiterhin.


1x zitiertmelden

Do it yourself: CSS für Profil und Blog

17.01.2021 um 15:53
@QonoS
Liegt evtl. daran, dass das Video nicht eingebettet ist, sondern nur als Link im GB steht.


melden

Do it yourself: CSS für Profil und Blog

17.01.2021 um 20:07
@Luminita
Das kann sein, danke


melden

Do it yourself: CSS für Profil und Blog

31.01.2021 um 16:45
Hi, kann man mit einem Code wo "Profil von repto" steht, noch ein weiterer Text verlängern?
Also offiziell wäre : Profil von repto - und ich selbst dazu zum Beispiel 2.0
damit dann im Profil steht: Profil von repto 2.0... ?

Müsste dann irgendwas mit .head_links sein


1x zitiert1x verlinktmelden

Do it yourself: CSS für Profil und Blog

01.02.2021 um 18:21
wie macht man styles, leuchtschrift und hintergrund bei blog


melden

Do it yourself: CSS für Profil und Blog

01.02.2021 um 19:06
@KaiserGünter
So fängst du an: Beitrag von yaacool (Seite 1)


melden

Do it yourself: CSS für Profil und Blog

01.02.2021 um 19:50
@Luminita
danke


melden

Do it yourself: CSS für Profil und Blog

08.02.2021 um 17:57
Zitat von ProjectSerpoProjectSerpo schrieb am 31.01.2021:Müsste dann irgendwas mit .head_links sein
.head_links:after { content: "2.0"; font-weight: inherit; font-size: inherit; margin-bottom: inherit; }


melden

Do it yourself: CSS für Profil und Blog

08.02.2021 um 18:00
Zitat von ProjectSerpoProjectSerpo schrieb am 17.01.2021:Hat leider nicht geklappt, dass Youtube Video in meinem GB sieht man weiterhin.
Hast du den Code zwischen die style Tags gesetzt?


melden

Do it yourself: CSS für Profil und Blog

09.10.2021 um 08:43
Hallo @dns

Kann es sein, dass du im "video"-Tag die Parameter "autoplay", "mute" und "playsinline" für mp4-Vids in Profilen abgeschaltet hast? Die herkömmlichen Schreibweisen funktionieren jedenfalls nicht und in den Browserkonsolen werden diese Parameter auch nicht angezeigt.

Danke & viele Grüße!


1x verlinktmelden

Do it yourself: CSS für Profil und Blog

25.12.2021 um 18:58
Kann mir jemand verraten, warum sich mein Uhu nicht mehr dreht?
Wurde etwas geändert?

@keyframes meineKeyframes { from {transform: rotate(0deg);} to {transform: rotate(360deg)} } .profile_pic { position:absolute !important; display:block !important; left: calc(100%/4); margin-bottom:100px !important; margin-top:50px !important; animation-name: meineKeyframes !important; animation-duration: 5s !important; animation-timing-function: ease !important; animation-delay: 0s !important; animation-iteration-count: infinite !important; animation-fill-mode:backwards; }


1x verlinktmelden

Do it yourself: CSS für Profil und Blog

26.12.2021 um 02:48
@Bishamon

Das ist seltsam, hatte Deinen Code bei mir im Profil ausprobiert, funktioniert einwandfrei.
Hab ja auch so was ähnliches im Profil, wo sich die Bilder drehen/bewegen, läuft auch ohne Probleme.
Da steckt der Wurm wohl wo anders drinnen, weiß leider nur nicht wo.


melden

Do it yourself: CSS für Profil und Blog

26.12.2021 um 12:07
@Bishamon

.profile_pic { position: absolute !important; display: block !important; left: calc(100%/4); margin-bottom: 100px !important; margin-top: 50px !important; -webkit-animation: keyframe_rotate 5s linear infinite; animation: keyframe_rotate 5s linear infinite; } @keyframes keyframe_rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }


melden

Do it yourself: CSS für Profil und Blog

26.12.2021 um 12:16
@S_C
@-Anna-

der Fehler lag bei mir. Ich hab ein } vergessen ... 😳


melden

Do it yourself: CSS für Profil und Blog

26.12.2021 um 12:16
@Bishamon
... und ein Semikolon ;)

Animationen brauchst du auch nicht mit einem "! important" auszeichnen und ich würde auch immer eine Anweisung für Webkit-Browser einbauen: -webkit-animation: keyframe_rotate 5s linear infinite;


Anzeige

melden