Site logo

Archived topic

why oh why is my logo down there?

3 replies · Started by sparkle on August 19, 2020

Viewing posts 1–4 of 4

i must have some setting somewhere that's causing this because i tried deleting all my custom css and still my logo sits below my site description. in my Customizer > Layout > Header it looks like this, and i would rather the logo above the description.

https://imgur.com/a/G4pIBQz

Hi there,

Try this PHP:

add_filter( 'generate_header_items_order', function() {
    return array(
        'header-widget',
        'logo',
        'site-branding',
    );
} );

Let me know :)

yes! that did it! thank you!

You're welcome :)

This archived topic is closed to new replies.