Logo in Footer and Menubar

Hi,

I choose to display title and subtitle and now I also would like to have my logo inside my menubar next to the menus.

I also want to have the logo in the footer next to the copyright. Is that possible?

www.aufeinmalfrei.de

Cheers
Sandra

Hi Sandra,

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

You can try achieving this 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

#masthead .nav.navbar-nav:after {
    clear: none;
    content: '';
    display: block;
    width: 200px;
    height: 100px;
    max-width: 100%;
    background: url("https://colorlib.com/wp/wp-content/uploads/sites/2/colorlib-logo-top.png") no-repeat;
    background-size: 100%;
    float: left;
}
.copyright:after {
    clear: none;
    content: '';
    display: block;
    width: 200px;
    height: 100px;
    max-width: 100%;
    background: url("https://colorlib.com/wp/wp-content/uploads/sites/2/colorlib-logo-top.png") no-repeat;
    background-size: 100%;
    float: right;
}

Please change the logo image URLs in the above code to whatever you want to set.

Best Regards,
Movin

THANKS SO MUCH!!!

You are most welcome here :slight_smile: