Getting header to be same size

I can’t seem to get all the

im trying to get the image header on every page to be same height what am I doing wrong. thanks in advanced

Hey @anthonypaulgraffeo,

Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your email. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation. Also give us the URL of your site so we could see your current setup.

Thanks.

you see the black and white images at top of each page with either a form on it or a slogan on it i need that image to be same height on every page.

Hi,

To further assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation.

Thank you.

sorry its vma.vmalongisland.com

Summary

Hi There,

The password is incorrect.

Could you please double check?

Thanks.

Hi There,

Thank you for the credentials, please add this to Theme Options > CSS

	.fullscreen-row {
		height: calc(100vh - 184px) !important;
		display: flex;
		align-items: center;
	}

Then apply the CLASS fullscreen-row to the ROW of your banner section.

Lastly, please remove the huge paddings you applied in the sections.

Hope it helps,
Cheers!

thanks so much can i ask where the apply class full screen to row is so i know thanks. and for the css you gave me do i put that in global css or on each individual page.

Hi There,

Please inspect your ROW and on the Customize tab find the class field.

You’re going to use this class on multiple pages, right? Please add it to Global CSS (Theme Options > CSS) so you don’t need to put it on every page CSS.

Hope it helps,
Cheers!

what is the difference etween class and id

Unlike the ID, the CLASS is most often used on multiple elements. This allows you to set a particular style for many elements with the same CSS. ID should be unique no elements should have the same ID. In writing CSS the CLASS is prefix with period [ . ], while the ID is prefix with hash character [ # ].

e.g

#myid {
	/*css properties here*/
}
.myclass {
	/*css properties here*/
}

Hope this shed some lights,
Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.