Greetings! I am currently working on my website www.acigaiabeta.esy.es and I am facing an issue with aligning the images of the carousel to the center vertically. Despite trying various solutions, such as following tips from this resource, the images remain stuck at the top. While this may not be a problem with larger images, smaller images pose an alignment challenge as their sizes vary. What could I be overlooking?
.carousel .item {
vertical-align: middle;
height: 500px;
background-color: #777;
}
.carousel-inner > .item > img {
vertical-align: middle;
max-width: 100%;
height: auto;
margin: auto;
top:auto;
-webkit-transition: 0.6s ease-in-out left;
-moz-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
I have solely attempted to resolve this issue using CSS, experimenting with properties like 'top' and 'vertical-align: middle' with no success.