Answers for "Transparent menu fixed on scroll wp"

CSS
0

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;
}
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language