Hey, I’m having trouble changing the logo in the top center of the website I worked on. I couldn’t figure it out, so I could use a hand. Here’s the link: officiallyobsessedd.com
I am thinking it’s hardcoded
Hey, I’m having trouble changing the logo in the top center of the website I worked on. I couldn’t figure it out, so I could use a hand. Here’s the link: officiallyobsessedd.com
I am thinking it’s hardcoded
Hi @Princebaffour To center the logo on your website, officiallyobsessedd.com, you can adjust the CSS of your theme. Here’s a step-by-step guide:
Go to the Theme’s CSS File
Add the following CSS code at the end of the file:
.site-header {
display: flex;
justify-content: center;
align-items: center;
}
.site-logo {
margin: 0 auto;
}
Let me know if this works.
Please provide password of your store.
Hi @Princebaffour ,
To change the logo, try this:
From your Shopify admin, go to Online Store > Themes.
Click Customize on your live theme.
In the theme editor, click on the Header section from the left panel.
You should see an option to upload or change the logo image there.
Once you upload your new logo, click Save.
If the option isn’t available in the Header section, it might be a custom-coded theme. In that case, you’d need to:
Go to Online Store > Themes > Actions > Edit code.
Look inside the header.liquid file (usually under Sections or Snippets).
Find where the current logo image is inserted (search for {{ ‘logo’ | asset_url }} or similar).
Replace or update the code to use your new logo image.