Transparent menu fixed on scroll wp
// How to Create a Transparent Sticky Header in WordPress with Elementor
// CSS code snippet
selector.elementor-sticky--effects{
background-color: rgba(133,130,255,0.5)!important
}
selector{
transition: background-color 4s ease !important;
}
selector.elementor-sticky--effects >.elementor-container{
min-height: 80px;
}
selector > .elementor-container{
transition: min-height 1s ease !important;
}