About Decorative Overlays
With CSS you can create an overlay with an image or gradient background which will be ignored by mouse events and will pass all activities to the elements underneath.
.decorative-overlay {
pointer-events: none;
background: url("../img/shining.png");
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
The essential part here is pointer-events: none;.
Also by me
Django Messaging 🎅🏼
For Django-based social platforms.
Django App for You
Django Paddle Subscriptions 🎅🏼
For Django-based SaaS projects.
Django App for You
Django GDPR Cookie Consent 🎅🏼
For Django websites that use cookies.
Django App for You