Skip to content

Instantly share code, notes, and snippets.

@mohsinworld
Created December 15, 2025 14:14
Show Gist options
  • Select an option

  • Save mohsinworld/d2e033e69fc31923e045894ae50693f0 to your computer and use it in GitHub Desktop.

Select an option

Save mohsinworld/d2e033e69fc31923e045894ae50693f0 to your computer and use it in GitHub Desktop.
Add this sticky-logo CSS as custom CSS on the logo's advance tab. Add that CSS as custom CSS
.elementor-sticky--effects .sticky-logo img {
width: 320px!important;/*-- edit the pixels to change to desired shrinking size --*/
}
.sticky-logo img {
transition: .5s all ease-in-out;
}
@media screen and (max-width: 767px) {
.elementor-sticky--effects .sticky-logo img {
width: 190px!important;/*-- edit the pixels to change to desired shrinking size for mobile --*/
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment