Archived topic
blog post page - author: display none
3 replies · Started by Torsten on February 21, 2021
Hi,
the first line in each blog post (see url in private section) contains date and author, I would prefer to not show the author, only the date, as set in the blog post overview page.
Beside that I have too much space between first menu items and sub menu items (Über uns / Aktuelles), how can I reduce that padding?
Thanks in advance for your help,
best,
Torsten
Hi there,
you can remove the Author in Customizer > Layout > Blog --> Single Tab:
https://docs.generatepress.com/article/blog-content-layout/#single
The sub menus are aligned to the bottom of the Menu Item. Choices are:
1. Don't use the Navigation as Header - just locate the Primary Navigation to Float Right. You can then reduce the Menu Item Height to close the gap.
OR
2. Use some CSS to tweak the current layout:
@media(min-width: 769px) {
.main-navigation:not(.toggled) ul li:hover>ul {
top: 80px;
}
}
Thx a lot!
You're welcome