- This topic has 1 reply, 2 voices, and was last updated 6 years, 11 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Pages’ is closed to new replies.
Tagged: Pages
Hello good Morning.
How to put the photo used on the main page in the same size on the internal pages of the site? I see it is reduced in the pages.
Try this in Additional CSS:
.main-header{
height: 450px;
}
.header-title{
padding-top: 160px;
}
.home .main-header{
height: unset;
}
.home .header-title{
padding-top: unset;
}
You may want to change the 450px height & the 160px top padding, but that should be a reasonable starting point.