Why isn't my logo displaying on mobile view?

Quick coding help please - my logo doesn’t show on mobile. Could anyone help me with how to code that please. I’ve tried a couple of things but they didn’t work. Website is www.bonzadogtreats.com.au

Thank you

@BonzaDogTreats

Go to Assetes/timber.scess.css and past below css at bottom of file.

.supports-js .logo__image
{
z-index: 1000 !important;
}

Let’s try with this JS code:

Put it in theme.liquid and before the tag


1 Like

Use Below CSS to fix the issue.

However there in no code for mobile header in the theme

@media only screen and (max-width: 480px)

.supports-js .logo__image {
    z-index: 1000 !important;
    left: 155px;
    top: 20px;
}

}

Hit Like and Accept as Solution

where do I put that please?

Thank you - where would I put that?

I edited my reply. Please check again.

Perfect, thank you so much

1 Like