Reply To: how to position a custom hook where i want it?

Home Forums Support how to position a custom hook where i want it? Reply To: how to position a custom hook where i want it?

Home Forums Support how to position a custom hook where i want it? Reply To: how to position a custom hook where i want it?

#107194
Tom
Lead Developer
Lead Developer

Hi there,

How do you want your header widgets positioned? Next to each other?

You can try putting your div in the Before Header Content hook, and then floating it to the right?

<div class="secondary-header-widget">
      Stuff in here
</div>

Then add this CSS:

.secondary-header-widget {
      float: right;
}

Let me know 🙂