Reply To: Make heading picture smaller
Home › Forums › Fury Theme › Make heading picture smaller › Reply To: Make heading picture smaller
August 13, 2020 at 7:29 pm
#27745
Moderator
Hello, Miranda!
Try to insert the following codes into Customizing->Additional CSS:
/*Header image height on all pages*/
.header-image {
height: 250px!important;
}
/*Header image on Home page*/
.home .header-image{
height: 400px!important;
}
/*Header image on smaller screens*/
@media only screen and (max-width: 992px) {
.header-image{
height: 35vw!important;
}
}
Set the height values as you need.
Regards
-
This reply was modified 2 years, 9 months ago by
Zex.