Archived topic
centering main-title (site-title) & site-subscription VERTICAL in page header
6 replies · Started by Manuel on April 29, 2017
Hi everybody and thanks for your great theme and always fast support.
I want to center the site title and site description in the page header VERTICAL. I've created my page header following this documentation.
https://docs.generatepress.com/article/merging-header-navigation-content/
Any ideas?
Hi there,
Can you provide a link to your site? We should be able to provide some CSS for that.
Thanks!
The Page Header has a vertical alignment option if you're adding the content inside the page header content area: https://docs.generatepress.com/article/page-header-content/#vertical-center-content
Thanks for the fast reply.
I know about the vertical align option but because of seo i want to show site title and site description in the header.
The link to the site:
uzm.a2ac.de
You could try to enter this in the Page Header Content then you can use the Vertical center content feature:
<div class="site-branding">
<p class="main-title" itemprop="headline"><a href="http://SITE-URL-HERE" rel="home">site title</a></p>
<p class="site-description">Site description</p>
</div>
Let me know if this works.
It works,thanks a lot.
I found also another way to aim it:
.home .site-header {
position: relative;
top: 30%;
-webkit-transform: translateY(-30%);
-ms-transform: translateY(-30%);
transform: translateY(-30%);
}
Awesome. Glad we could help!