• Hi, I’ve got the logo showing up in the “site identity” section, but it’s not showing up on the page anywhere at all.

    And to make sure I’m even asking the right question: Is the logo going to show up above the top menu, meaning that no matter how far down a user scrolls, they will always see the logo above the menu?

    Thank you!!!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter jacquischerrer

    (@jacquischerrer)

    Ok I got the logo showing up above the menu, but it disappears when you scroll down. The menu stays in place, but the logo and site name scroll away.

    Hi, the logo will scroll off screen because this theme is not designed to keep the logo on the screen at all times. You can see a demo here:
    https://piquedemo.wordpress.com/

    While we can’t provide in-depth support on this, you may be able to add your logo using some CSS along these lines:

    @media screen and (min-width: 768px) {
    	.main-navigation.sticky {
    		background-image: url('https://yoursite.com/logo.png');
    		background-size: 250px;
    		background-repeat: no-repeat;
    		background-position: 2em 50%;
    		line-height: 2em;
    	}
    }

    You’ll need to adjust the sizes to fit your menu and your logo. Hoping it helps!

    Oh, and this would go under Customize > Additional CSS. Be sure to adjust it until it works for you.

    Thread Starter jacquischerrer

    (@jacquischerrer)

    Thank you so much!!

    You bet. Cheers ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Logo no showing’ is closed to new replies.