Skip to content

Instantly share code, notes, and snippets.

@askwpgirl
Created April 9, 2024 23:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save askwpgirl/b4ce59a655270d0f3e0acab32419c637 to your computer and use it in GitHub Desktop.
Save askwpgirl/b4ce59a655270d0f3e0acab32419c637 to your computer and use it in GitHub Desktop.
Elementor change color of sticky menu on scroll
/* -- Changing the menu background on scroll effect -- */
.elementor-sticky--effects {
background: #3E3EF5!important; /* change the background color here*/
}
.elementor-sticky--effects .sticky-menu ul li a /* change the menu text color here*/ {
color: #fff!important;
}
.elementor-sticky--effects, .sticky-menu ul li a {
transition: .5s all ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment