Edit logo link

Hi there guys

I’d like to modify the link from the logo adding an anchor at the end of my url
https://mysite.com TO https://mysite.com#anchor1

Is that possible ?

Any idea would be more than welcome.

Hello @vlad,

Thanks for reaching out. :slight_smile:

You can add following JS code under X > Theme Options > JS:


jQuery('.x-brand').attr('href', 'https://mysite.com#anchor1');

Thanks.

2 Likes

Brilliant !!! this works smoothly !!
many thanks

You/re welcome, @vlad.

This is great, just what I’ve been looking for! But now how can I force the link open in a new tab?

You can add this still in Theme Options > JS.

jQuery('.x-brand').attr('target', '_blank');

If you want to add more attributes, please check the attr jQuery function documentation http://api.jquery.com/attr/

Hope that helps.

1 Like

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