Image/icon in menu area (top left of page)

I’m looking to add a second, small logo that fits in the top left (or the bottom left of the footer), sort of like Reddit has but retaining the main logo in the top middle.

I imagine this would be difficult if it’s going to be a different image, but I figured it worth asking.

Hi @patremagne,

I hope you are well today and thank you for your question.

You can try displaying it in the footer by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS



#colophon .site-info.container:before {
    display: block;
    content: '';
    background: url('https://pbs.twimg.com/profile_images/667516091330002944/wOaS8FKS.png') no-repeat;
    height: 50px;
    width: 50px;
    background-size: 100%;
    float: left;
}

Please change the logo image URL in the above code to whatever you want to display.

Best Regards,
Movin