Site logo

Archived topic

Page Hero center heading

8 replies · Started by Peery on October 17, 2019

Viewing posts 1–9 of 9

Hey,

Using VH as height for the page-hero class... Having troubles getting the text to not center. Let me know if you know a fix. Thanks ;)

.page-hero {
	background-image: linear-gradient(180deg, #2d5488 0%, #3ab3d7 100%);
	min-height: 21vh;
	color: #fff;
}
.inside-page-hero {
	position: relative;
    vertical-align: middle;
}
.page-hero h1 {
	font-weight: 600;
}

Hey,

Yea i want it centered.. also centered vertically ... But I am using VH as the container height..

Edit your CSS to this:

.page-hero {
    background-image: linear-gradient(180deg, #2d5488 0%, #3ab3d7 100%);
    min-height: 21vh;
    color: #fff;
    display: flex;
    align-items: center;
}

Holy smoke ;) Thank you very much!

Thanks !

No problem :)

This archived topic is closed to new replies.