 
	
		
		
		
		
			
Hi,
i would like to:
1.)  add some height to the slider in responsive view?
2.) reduce the height of the banner in responsive view?
How can i do that?
kind regards Jak
Hey Jak73,
Thank you for the inquiry.
1.) You can add this css code to adjust the height of the slider images on mobile view:
@media only screen and (max-width: 767px) {
	/* Add your Mobile Styles here */
	#top .avia-slideshow li img {
		min-height: 600px;
		object-fit: cover;
	}
}
2.) To adjust the height of the section, try including this css rule inside the media query above:
.home #av_section_1 .template-page {
    padding: 10px 0;
}Best regards,
Ismael
