Hi there,
It’s against WordPress forum policy to provide support on GP Premium features.
Can you re-post this on premium support forum? – https://generatepress.com/support/
Let us know. Thanks! 😀
-
This reply was modified 4 years, 10 months ago by
Elvin.
I wasn’t aware this feature is premium.
Any way you can give me some quick code to add to PHP to change location of tagline from right to bottom?
So far, the code is this:
add_filter( 'generate_site_title_output', function( $output ) {
$tagline = '<div class="site-description">Your tagline here</div>';
return $output . $tagline;
} );
I wasn’t aware this feature is premium.
Ah yeah we’re playing on the safe side by WordPress Forum policy as this is related to Navigation as a Header which is a premium feature.
Any way you can give me some quick code to add to PHP to change location of tagline from right to bottom?
I’ll have to see the current structure of your site’s header to know which is the appropriate way to go about this. This way, I can identify if a simple CSS fix is enough. 😀
How can I send you my website privately @ejcabquina?
You can send it through our contact page – https://generatepress.com/contact/
I’ve replied to the sent mail.
But incase it gets lost, here’s the content:
You can try adding this CSS:
.navigation-branding {
display: flex;
flex-direction: column;
align-items: stretch;
}
.navigation-branding > * {
display: block;
width: 100%;
text-align: left;
}
.main-title a {
line-height: 1.5;
}