Change logo url

Hi there. I am going around in circles trying to find the answer but can’t. hence posting here! My home page logo links to a category, and I can’t figure out how to change that so it links to the actual site’s home page.

Hi Nicholas,

Thanks for reaching out.
I have checked your website and found that the Navigation is overlaying the Logo and that is why it shows the first URL. It’s due to the custom CSS added for the x-brand selector as shown in the second screenshot.

I would suggest you remove the custom CSS code to get rid of this issue.

Hope it helps.
Thanks

Hello Nicholas,

Thanks for writing to us.

It seems that the menu section is overlapping with the logo, it might be the issue of custom CSS code or any plugin conflict issue just because custom CSS or plugin CSS overrides the theme style. In order to get rid of it, you need to troubleshoot common issues.

For a quick fix, you can use this custom CSS code to move the menu under the logo section so that logo is clickable with the correct URL.

   .masthead-inline .desktop .x-nav {
	float: left !important;
	width: 100% !important;
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

thank you so much! :slight_smile:

ah, I see! I can’t quite make out the image you sent. I want to remove that custom code.

Ah, no problem, I think this is the offending code

.masthead .x-nav {
float: left;
}
.x-navbar .x-brand {
float: right;
}

Hi Nicholas,

Yes, you are correct. Please remove that.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.