Static Home page means posts page header is huge!
- The topic ‘Static Home page means posts page header is huge!’ is closed to new replies.
Need help? Check out our Support site, then
Please check out my early stage site. My home page is static and currently the News page is the dedicated page for posts. http://www.businessaddvantage.com
On the news page the header is huge and there are no posts visible on screen at all! I’d love to repeat the three highlighted posts on the News page exactly as per front page if technically feasible?
But whichever how do I reduce depth of header on the posts page?
Thanks
Andrew
The blog I need help with is: (visible only to logged in users)
Hello,
But whichever how do I reduce depth of header on the posts page?
You may adjust the height of your News page with the following CSS Code Snippet.
.blog .header-custom {
max-height: 300px;
}
Please enter above CSS Code Snippet in Appearance > Customize > CSS
I’d love to repeat the three highlighted posts on the News page exactly as per front page if technically feasible?
Currently, these posts will be visible on Front Page only.
Thanks
That sorted it, many thanks.
Actually result does not work when I request a category page like
http://businessaddvantage.com/category/neuroscience/
when the excess header appears again even though it works on the News (primary blog) page now? Suggestions gratefully received, thanks.
Andrew
Hello,
I think you have fixed it with “.header-custom” class. For archive pages, you may use the following CSS code snippet.
.archive .header-custom {
max-height: 300px;
}
Thanks