- This topic has 1 reply, 2 voices, and was last updated 6 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Page Title box per page’ is closed to new replies.
Home › Forums › Trusted Pro › Page Title box per page
Can you please tell me how to get the title box centered on all my pages? It’s fine on the Home page but all my other sub pages it is not centered in the space? Thanks.
I can see on your site that you have added your own additional css to change the height of the header and the top padding of the title area like so:
@media screen and (min-width: 1025px){
.main-header{
height: 450px;
}
.header-title{
padding-top: 90px;
}
}
simply change the top padding, try different values until you get it how you like e.g.
@media screen and (min-width: 1025px){
.main-header{
height: 450px;
}
.header-title{
padding-top: 120px;
}
}