[Gelöst] Wie kann man die Animation des Galerie-Moduls im Divi WP-Theme deaktivieren?

  

3
Themenstarter

Hallo, ich habe Divi WordPress Thema und vor kurzem habe ich bemerkt, dass das Galeriemodul eine Animation hat, die von links kommt (eine leichte);

Wie kann ich es entfernen, da es keine solche Option im Modul selbst gibt (ich habe auch die Zeile und den Abschnitt überprüft - nada!)

Danke

1 Antwort
2

Hallo, in Ihrem Divi Kind Thema in der style.css inlcude diesen Code:

.et_pb_gallery_item {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}

....oder im Abschnitt für zusätzliche CSS in den Divi-Optionen.

Teilen: