Logo in Footer

Hi

Could you tell me what widget I use, or how I could put my logo in the footer of shapely theme? I have my logo in the top menu bar, but it is way too small.

Also, is there a way to get the logo in the top menu bar to display as well as the site title?

Thankyou

Hi @mswilson,

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

To achieve this you have to create child theme of Shapely theme and develop custom code in it or you can make the logo added in header bigger by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

img.logo {
    max-height: 100%;
}
#site-navigation .module.left, #page .nav-bar a {
    height: auto;
    width: auto;
}

Best Regards,
Movin