Header Formatting with Images

This forum is for all Flare issues not related to any of the other categories.
Post Reply
aclark01
Jr. Propeller Head
Posts: 1
Joined: Mon Oct 16, 2017 12:42 pm

Header Formatting with Images

Post by aclark01 »

Does anyone know if it's possible to create a header in a Flare project that has both text and an image? I would like to create a header with the topic title on the left and the company Logo on the right, and I cannot figure out how to do it.

I would like it to look similar to this mockup: Topic Title Co. LOGO image
peckerdunne
Propeller Head
Posts: 32
Joined: Thu Apr 08, 2010 12:19 pm
Location: Watford, UK

Re: Header Formatting with Images

Post by peckerdunne »

You've probably sorted this by now but you could use a div.

Code: Select all

        <div class="iconhd_top">
            <div>
                <img src="../Resources/Images/Icons/categories/ene.svg" alt="decoration icon" class="small_icon" />
            </div>
            <div>
                <h1 class="level3">Ene 04 Low carbon design
</h1>
            </div>
        </div>
Post Reply