Headerbuilder Pro - Bars, Containers and Elements as Links

hi there,
is there a way to make a bar, container or element in the header builder in pro act as a link?
eg.: i have a header element. just one big word. this should act as a link to another page.
thanks a lot! kai

Hi @iTurtle,

Thanks for reaching out.

There is no available option for that, but could be done through jQuery. Example, let’s say you add link_to_this_page to your header bar, container, or element’s Class input. Then you can simply add this code to your header’s custom javascript section.

jQuery ( document ).on('click', '.link_to_this_page', function() {
window.location.href = 'http://example.com/page/';
} );

The link_to_this_page is just a sample, you can add your own custom class name and repeat it over and over for each clickable and linkable items.

Thanks!

1 Like

thanks so much @rad! i will try that out :slight_smile: best wishes, kai

Sure, let us know how it goes. :slight_smile:

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