How to make a Jumbotron image shorter?

I want to make the homepage image not that tall. This code affects blog image too, but I need to resize the jumbotron only.

#header .bottom-header {
    padding-top: 160px;
    padding-bottom: 280px;
    height: 600px;
}

What’ wrong with the code?

Hello,

Try a better selector, like

#header .bottom-header.front-page {
    padding-top: 160px;
    padding-bottom: 280px;
    height: 600px;
}

If I understand correctly, you only want to change the homepage header size?

Regards

Thanks, that’s exactly what I need!