Free and Premium WordPress Plugins & Themes Forums WordPress Themes Booklium Change Page Header Font and Height
- This topic has 8 replies, 4 voices, and was last updated 4 years, 2 months ago by Andre Flores.
- AuthorPosts
- May 12, 2020 at 12:17 pm #952863Benjamin SullivanParticipant
How do I change the Page Title Header ing Booklium: https://ibb.co/q7cjknq
At the moment there is too much white space between the Menu bar, Page Title and the content/feature image, I would like to change this for all my pages.
Many thanks in advance.
Ben
May 14, 2020 at 2:47 pm #953909Andre FloresModeratorHello, Ben!
You may decrease the spacing by adding custom CSS under Appearance ->Customize ->Additional CSS:
.page-template .content-area { padding-top: 80px; } .page-template .entry-header, .page-header { padding-bottom: 3.125rem; margin-bottom: 3.75rem; }
Simply decrease padding values to the desired ones.
Regards,
AndreMay 14, 2020 at 4:02 pm #953976Jan van WelieParticipantHi Andre, Have the same problem as Ben. Added the code but there are still some pages that have not taken the change, there is still a white gap. I have also added a code to remove the tittle.
.page-template .content-area {
padding-top: 0px;
}
.page-template .entry-header, .page-header {
padding-bottom: 0rem;
margin-bottom: 0rem;
}
.entry-title:last-child {
display: none;
}
.entry-header, .page-header {
padding-bottom: 0;
margin-bottom: 0;
}May 14, 2020 at 4:52 pm #954004Jan van WelieParticipantJust fixed. Had to do with template. had to change to wide.
May 15, 2020 at 4:18 pm #954564Andre FloresModeratorHello, Jan!
I am glad that you have managed to resolve the issue, thank you for your feedback.
Regards,
AndreJuly 18, 2020 at 7:34 am #981164Tanitsak LuechatanyapatParticipantHello,
Could you please provide code to eliminate page title header from all the pages?Thank you
July 20, 2020 at 6:38 am #981583Andre FloresModeratorHello, Tanitsak!
You would like to get rid of the page title only, use the following code:
.entry-title { display: none; }
In case you want to remove the page title together with the description, use the following code:
.entry-header { display: none; }
Best regards,
AndreJuly 20, 2020 at 7:34 am #981599Tanitsak LuechatanyapatParticipantI would like to thank everyone in this post.
Thank you
tanitsakJuly 21, 2020 at 6:27 am #982000Andre FloresModeratorHi, Tanitsak!
You are always welcome.
Regards,
Andre - AuthorPosts
- You must be logged in to reply to this topic.