Reply To: how to make logo image in header fluid

Home Forums Support how to make logo image in header fluid Reply To: how to make logo image in header fluid

Home Forums Support how to make logo image in header fluid Reply To: how to make logo image in header fluid

#87597
Tom
Lead Developer
Lead Developer

You may be better off adding your header using GP Hooks.

If you add the HTML for the image in the “After Header” hook like the below, it should work:

<div class="fullscreen-header">
      <img src="URL TO YOUR IMAGE" alt="" />
</div>

Then this CSS:

.fullscreen-header img {
      width: 100%;
}