Add logo to easy footer

Hello, I would like to replace the heading and blurb of the easy footer with a logo svg. Can anyone please advise the simplest way to do this? Can I add a div to the component HTML for the logo? If so what I’d and class do I apply?

2 Likes

I was searching for how to do this and came across your post.

Here is what I ended up doing. I made the logo be the background image for the Heading area.

I added this CSS:

.first-box .heading {
    background-image: url("https://www.mineralrightsforum.com/uploads/default/original/2X/a/a4c0c10f2863d0cbff835af77d11fb0edfeaf0cc.png");
    background-size:100%;
    background-repeat:no-repeat;
    min-height: 50px;
}

I did have to put a “.” in the Heading because the div is only generated if there is text there.

Here’s how ours turned out:

image

We are happy with the result.

3 Likes