Site logo

Archived topic

Centered logo in footer

20 replies · Started by Alex on July 28, 2019

Viewing posts 16–21 of 21

No problem. I'm learning a lot about GP while trying all these things.

I've added an image widget to the footer bar. I'd like to have it centered and ideally control it's width. just like we can do with the Site Identity logo width.

Thanks for all your help with this.

I would highly recommend uploading a much smaller logo so we don't have to change the width using CSS.

It will also keep the file smaller as well.

Try to upload the size you actually want in the footer :)

It is an SVG logo, I was hoping to use mostly SVG where possible.

Hi there,

try this CSS:

@media(min-width: 769px) {
    .inside-site-info {
        position: relative;
    }
    .footer-bar-active .footer-bar .widget_media_image {
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        width: 200px;
        transform: translate(-50%,-25%);
    }
}

That did the trick. Thank you both Leo and David. You guys are super responsive.

Glad we could be of help

This archived topic is closed to new replies.