Shop Categories

X

Reply To: Make heading picture smaller

Home Forums Fury Theme Make heading picture smaller Reply To: Make heading picture smaller

#27745
Zex
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.