Reply To: Page-header add-on: Text next to image

Home Forums Support Page-header add-on: Text next to image Reply To: Page-header add-on: Text next to image

Home Forums Support Page-header add-on: Text next to image Reply To: Page-header add-on: Text next to image

#108104
Tom
Lead Developer
Lead Developer

Hi Are,

You can do this inside the Content tab of the Page Header.

For example, an image on top:

<div class="my-custom-page-header">
      <img src="YOUR IMAGE URL" alt="" class="aligncenter" />
      <p>My text in here.</p>
      <p>One more paragraph.</p>
</div>

Image float left:

<div class="my-custom-page-header">
      <img src="YOUR IMAGE URL" alt="" class="alignleft" />
      <p>My text in here.</p>
      <p>One more paragraph.</p>
</div>

Image float right:

<div class="my-custom-page-header">
      <img src="YOUR IMAGE URL" alt="" class="alignright" />
      <p>My text in here.</p>
      <p>One more paragraph.</p>
</div>

Can you possibly take a screenshot of the moment in the page header video you’re trying to achieve?

Let me know 🙂