How to hide date in review posts on Air Reviews app?

Hi, does anyone know how to hide the date in review posts on the “Air Reviews: Product Reviews” app?

Hi @Luca93

Website link please.

Thanks

https://labottegadiolivander.it/

Hi @Luca93

Kindly paste the below CSS code in base.css under assets at bottom

.AirReviews-Blocks__Date {
	display: none !important;
}

It’ll look like this

Thanks

Sheesh B

Perfect, it works, thank you very much.
I also wanted to know if it was possible to display a maximum of 3 reviews per page

Hi @Luca93

Not much of help from the app but you can try the below CSS code in the same base.css file at bottom

#AirReviews-BlockWrapper {
	margin-bottom: 50px;
}
#AirReviews-BlockWrapper .AirReviews-Blocks {
	max-height: 570px;
	overflow: scroll;
	border-radius: 10px;
}
body .AirReviews-PreviewWrapper__Mobile .AirReviews-Blocks {
	border-radius: 10px;
	max-height: 730px;
	overflow: scroll;
}

Thanks

Sheesh B

Thank you very much, it’s much better this way.

Hi, De code works for me on desktop, but on mobile the dates are still displaying