Reply To: 2 Sides to the Header Widget

Home Forums Support 2 Sides to the Header Widget Reply To: 2 Sides to the Header Widget

Home Forums Support 2 Sides to the Header Widget Reply To: 2 Sides to the Header Widget

#228923
Tom
Lead Developer
Lead Developer

Hi there,

I’m afraid it’s not possible to split the header widgets up like that.

However, you can achieve this using GP Hooks if you’d like.

You would first remove your logo and header widgets, then add this into the Before Header Content hook:

<div class="grid-33 header-left">
    Left area content (phone number etc..)
</div>
<div class="grid-33 header-center">
    <img src="URL TO YOUR LOGO" alt="" />
</div>
<div class="grid-33 header-right">
    Right area content (icons etc..)
</div>

You can insert widgets into those areas with a shortcode if you use a plugin like this: https://en-ca.wordpress.org/plugins/widget-shortcode/

Hope this helps 🙂