Site logo

Archived topic

centering main-title (site-title) & site-subscription VERTICAL in page header

6 replies · Started by Manuel on April 29, 2017

Viewing posts 1–7 of 7

Hi there,

Can you provide a link to your site? We should be able to provide some CSS for that.

Thanks!

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!

This archived topic is closed to new replies.