wordpress 5.5 creates trouble in Projects picture

Hi,

Since the 5.5 installation, the arrangement of the projects section pictures is bad on my front page.
Any idea?

Best regards.

Hey there

What does it mean its bad? Please also provide link to your website and I will check it

Hi,

the height of the pictures is divided by 2 and the link is here : https://cinemaelysees.com

Greetings

hey there

Hope you are having a good day and thank you for your question :slight_smile:

Please add this CSS in appearance - customize - additional CSS

#projects .project {
height: 400px;
}

Thanks!
Colorlib Support Team

Works fine.

Thank you for the support and have a nice day.

Oops… This solution works fine on desktop but not on mobile version.
Another CSS for this maybe?

Thanks!

Hey there

You may try something like this instead:

@media only screen and (min-width: 992px) {
#projects .project {
height: 400px;
}
}

Hi there,

Works great !

Thank you for the support and have a nice day.