Best Premium and Free WordPress Themes › Forums › Infinite Photography Pro › Header image on mobile › Reply To: Header image on mobile
December 14, 2018 at 12:04 pm
#41042
acmethemes
Keymaster
Dear Jan,
Here is the solution of your query, please go through it.
Site URL: http://salavaphotography.com/:
1.) To adjust the image height add the following css
/*for adjusting height in mobile devices add both css and chage the value at comment mention below*/
@media (min-width: 992px){
.slider-feature-wrap .at-front li {
height: 40vh !important;
}
}
.slider-feature-wrap .at-front li {
height: 30vh !important;
/*change the value of height here to adjust as per your need*/
}
2.) To remove image in mobile devices add the following code
/*if you want to hide on mobile devices*/
@media (max-width: 768px){
.slider-feature-wrap .at-front li{
}
}
- This reply was modified 5 years, 10 months ago by acmethemes.