Tour page main image__

Hi,

is it possible to change the height of the image on the left hand side of the tours page - screenshot here.

Thanks.

Hello,

It could be changed but since the design is based around 100vh meaning 100% of any viewport height - changing this will have unwanted consequences like responsive issues on other devices. However, if you would like to edit the CSS manually for each device, you could customize the CSS, here is the CSS for devices larger than 992px to get you started:

@media only screen and (min-width: 992px) {
.trip-info #tour-slide {
height: 50vh;
}
}

Thank you

Ahh right I don’t think I’ll mess with that then :slight_smile:

thank you though.