My challenge is to adjust the height of the slick slider to match the size of the header it's contained in, using only CSS since the slider is a pre-made component.
I have been able to increase the image height vertically, but I'm struggling to make it span the entire width. The CSS code I used is:
.slick-slide img {
height: 100vh;
width: 100vw;
}
Despite trying various approaches, I haven't been successful in stretching it across the full width of the page...
Any assistance on this matter would be highly appreciated.