AnonymousInactive
Hi,
Great theme, my first build with it and it is going well. Can anyone advise on how to adjust the height of the slider please?
Many thanks
Joss
I would also like to know where to change (reduce) the height of the slider – can anyone help?
I would like to know this too as well as how to get rid of the grey-scale darkening of the header image.
Can be done in CSS. Put this in your child-theme’s CSS file and the adjust the height values to what you need.
.slide { //Regular size
max-height: 560px;
overflow: hidden;
}
@media (min-width: 992px) { //Responsive size
.custom-query-slider .slide {
height: 360px;
}
.sidebar-full-screen .custom-query-slider .slide {
height: 560px;
}
}
If need to adjust the padding space on top and bottom, because of the adjusted space, use this CSS for that:
.sidebar-full-screen .slide-container {
padding: 60px 0; //Change the 60px value to what you need
}
-
This reply was modified 8 years, 5 months ago by Zeror.