Can't seem to add Link to Logo header on main website

The website in question is https://www.rli.uk.com/menaawards

So I’m trying to add a link to the main header/logo but I can’t seem to find where to put the link in the backend of the website (the image in question which I want to be linked elsewhere is displayed below);

Can’t seem to link it up to a different external site.

Was wondering if there’s a way to edit this manually as well through HTML.

If anyone has any fixes for this please let me know because I can’t seem to change the link, thanks!

Hello @Drafter,

Thanks for writing to us.

It seems that you are using the X theme header, regretfully there is no option to add a different site URL on the login. I would suggest you upgrade your X theme to a Pro theme where you would get the option of a custom Header builder. You can create a custom Header through the Header builder where you can insert the custom URL on the logo.

Alternatively, in case you have an idea about the custom JS code, I would suggest you please add this code to global JS to get a custom link to the logo.

jQuery(document).ready(function($){
jQuery(".x-brand").attr("href", "https://www.youtube.com/");
});

Please feel free to change the Youtube URL to your URL. The purpose of providing the custom Javascript is to show you how to add Javascript code to your site. Writing custom is outside the scope of our theme support. If you need more customization, you need to learn Javascript https://www.w3schools.com/jquery/ In case if you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

There is the screenshot of the backend, if you can please advise me where I can add the url for the header to click and redirect me to ‘https://apparelglobal.com/en/’ that would be great!

Hello @Drafter,

In case you don’t want o upgrade the X theme to the Pro theme you need to add the given JS code the to Global JS box from Cornerstone–>Theme Options —>Custom Code—>Global JS since there is no option to add the custom link on the Header Logo.

jQuery(document).ready(function($){
jQuery(".x-brand").attr("href", "https://apparelglobal.com/en/");
});

The purpose of providing the custom Javascript is to show you how to add Javascript code to your site. Writing custom is outside the scope of our theme support. If you need more customization, you need to learn Javascript https://www.w3schools.com/jquery/ In case if you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

Worked thanks!

You are most welcome @Drafter

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