Extra codes

– collapse accordion in Elementor. Code plaatsen op de pagina.

<script>
jQuery(document).ready(function($) {
var delay = 100; setTimeout(function() {
$('.elementor-tab-title').removeClass('elementor-active');
$('.elementor-tab-content').css('display', 'none'); }, delay);
});
</script>

Aangepast CSS => Padding bovenaan de footer verkleinen

.footer-widgets {
    padding: 20px 0;
}

Kleur veranderen tekst op sliders 1 vs 2

.slide-item:nth-of-type(1) .text-slider .maintitle,
.slide-item:nth-of-type(1) .text-slider .subtitle {
  color: #15668d;
}

.slide-item:nth-of-type(2) .text-slider .maintitle,
.slide-item:nth-of-type(2) .text-slider .subtitle {
  color: #66c8f0;
}