[Resolved] Moving Site Tagline Below Logo

Home Forums Support [Resolved] Moving Site Tagline Below Logo

Home Forums Support Moving Site Tagline Below Logo

Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • #51045
    Steven Coutts

    Hi there,

    Brilliant theme, bought the update and it works a treat. Just wondering if there is a way to move the site tagline below the logo and also change the font and colour of the tagline.

    Thanks

    Steven Coutts

    #51054
    Tom
    Lead Developer
    Lead Developer

    Hi Steven, glad you’re enjoying GP πŸ™‚

    1. Best way to do this is using GP Hooks. First, go to “Appearance > Customize > Header Content” and disable the tagline.

    2. Now go to “Appearance > GP Hooks” and add this inside the “After Header Content” hook:

    <p class="site-description">Your tagline here</p>

    3. To change the color, go to “Appearance > Customize > Colors > Header Colors” – in there you’ll see a “Tagline” option.

    Hope this helps!

    #316913
    Luis

    Great Job with GP Hooks. share more possibilities about the uses about it and share some woo commerce CSS responsive

    #316937
    Tom
    Lead Developer
    Lead Developer

    Anything is really possible in GP Hooks, it doesn’t have many limitations.

    As for WooCommerce, our new WooCommerce add-on is shipping in the next version of GP Premium πŸ™‚

    #430164
    Howard

    Hi Tom:
    followed instructions as per hooks to move tagline below logo header.
    Each time I update (publish) the site displays my logo and underneath Your Tagline here..
    I must be doing something wrong but I do not think so?
    Howard

    #430165
    Howard

    I added the text to the box and before that disengaged tagline..then put your code in the hook below header. (of course saved HOOKS)
    thanks howard

    #430201
    Leo
    Staff
    Customer Support

    Hi Howard,

    That method should still work.

    Can you link us to the site?

    If you need to keep it private, feel free to start a new topic so you can use the URL field that only myself and Tom can see.

    Thanks!

    #586779
    Robert

    The hook solution after header content works for me on desktop, but on mobile the site-navigation gets between logo and description. Anything I can do?

    #586922
    David
    Staff
    Customer Support

    Hi Robert,

    can you start a new topic and provide a link to the site?

    #1644116
    Jeff

    Thanks for this solution (and great theme)!

    Taking it a step further, if you check “Execute PHP”, you can insert the existing tagline that is set in the customizer and general settings.

    <p class="site-description"><?= get_bloginfo( 'description' ); ?></p>

    #1699411
    TJ

    Hey all! I followed the steps to set up the hook but for some reason the tagline is displayed next to rather than under the logo: https://shopdoge.xyz/

    Any input as to why? Or how I can get it below the logo?

    #1699447
    Ying
    Staff
    Customer Support

    Hi TJ,

    You could try to add this CSS:

    .inside-header {
        flex-direction: column;
    }
    #1699470
    TJ

    Hi Ying,

    Thanks for the recommendation! That gets the tagline under the logo, but it also moves the logo and the tagline both to the center.

    #1699496
    Ying
    Staff
    Customer Support

    I haven’t seen the layout before the tagline being added, so what layout are you looking for?

    Logo and tagline to the left? If so, try add this as well πŸ™‚

    .site-logo, .site-description {
        margin-right: auto;
    }
    #1699519
    TJ

    Yes, that did it. Thank you!!!

Viewing 15 posts - 1 through 15 (of 16 total)
  • You must be logged in to reply to this topic.