CSS Schnipsel
Hintergrund filter blury:
selector {
backdrop-filter: blur(4px);
}
Versand und Steuer Infos ausgeblendet:
selector p.wc-gzd-additional-info {display:none;};
Elemente nach Zeit ausblenden:
selector {
animation: fadeOut 2s ease-out 3s forwards;
}
@keyframes fadeOut {
from { opacity: 1;
}
to { opacity: 0;
}
}
Währungssymbol abstand
.elementor-price-table__currency {
margin-left: 10px;
}
Maquee Effect ohne Stottern
selector .swiper-wrapper{
transition-timing-function: linear !important;
}
Paypal Message abstand
:is(.elementor-widget-woocommerce-product-add-to-cart, .woocommerce div.product .elementor-widget-woocommerce-product-add-to-cart, .elementor-widget-wc-add-to-cart, .woocommerce div.product .elementor-widget-wc-add-to-cart)
form.cart
{
margin-bottom: 0.5em;
}
