In the Pipeline theme, when the cart drawer deploys the entire page behind the drawer blurs out. How do remove this blur effect?
Try this into Theme Settings=> Custom CSS:
.drawer__underlay__blur {
display: none !important;
}
The blur is gone, but there appears to be a white overlay?
Yeah, they apply 2 filters, blur and semi-transparent color.
You did not mention the color, only blur ![]()
Try this instead:
.drawer__underlay {
opacity: 0;
}
I could not see the semi-transparent color, I thought it was all blur ![]()
Worked, You da MAN!