How do I change the height of the home page background (“publication cover” image in the UI)?
I’m using:
Ghost: 4.6.4
Theme: Casper 4.0.5
How do I change the height of the home page background (“publication cover” image in the UI)?
I’m using:
Ghost: 4.6.4
Theme: Casper 4.0.5
You can do it via Code Injection, adjusting the min-height and max-height of the header content element:
.site-header-content {
min-height: 400px;
max-height: 600px;
}
Thanks. Do I need to put that within some kind of tag (like <style>
)?
Yes, it should go in a <style>
tag.