Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @kerrypolka,

    The following CSS is being added to your site, likely by a third-party plugin, that is causing the logo to float to the left:

    .wpa-ld img {
        display: block;
    }

    It looks like the WP Accessibility plugin is adding the above CSS in order to get the little I symbol to hover over your logo.

    If you don’t wish to disable that plugin, you could use some custom CSS of your own to get everything to line up:

    .wpa-ld button {
        position: initial;
    }
    
    .wpa-ld img {
        display: initial;
    }

    To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)

    Hope that helps out! We’re right here if you have extra questions too.

    Thread Starter kerrypolka

    (@kerrypolka)

    Hi Siobhan,

    Great spot!! That’s done it – thank you very much!

    Kerry

    I’m glad to hear that, Kerry! We’re right here if extra questions come up, too.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Centre a non-square logo’ is closed to new replies.