How to remove the grey filter from the home picture

Hi! I am using a rental hive and notice that every time I want to change the main picture on the home page, there is a grey filter on top of the picture that makes it look darker. Is there a way to remove it or make it clearer?

Thanks!

Please try this CSS snippet

.header-hero--cover::after{
	content: none;
}

Nope. It did not work.

Please try this CSS snippet instead

.header-hero--cover::after{
	display: none !important;
}

No, it does not work. :frowning:

Sorry for the inconvenience. Please try this CSS snippet instead

.header-hero--cover::before{
	display: none !important;
}

I am really sorry yevhen. However, still is not working :frowning:

Please try this CSS snippet instead

.header-hero::before{
	display: none !important;
}

Yes!!!

Finally, it worked! You are the best!

Thank you!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.