Hello,
Is it possible to add a hyperlink to the logo you place in the Theme area of Forms?
Any input is greatly appreciated!
Thanks.
Hello,
Is it possible to add a hyperlink to the logo you place in the Theme area of Forms?
Any input is greatly appreciated!
Thanks.
$("#form-logo").wrap("<a href='yourLinkHere'>");
Just insert your link your it says 'yourLinkHere'
Hi Jo Anne,
I don't think its possible to do so.
But as a workaround, I normally place a custom html on the form with all the parameters I need.
Below is the html code I used, replace with your link and image.
<a href="https://www.laserfiche.com/" target="_blank" title="Go to Laserfiche Website"> <img src="https://upload.wikimedia.org/wikipedia/commons/b/bc/Laserfiche_logo.png" alt="Laserfiche Logo" style="width:132px;height:42px;border:0;"></a>
Thank you Mahesh and Rendani for your replies.
Rendani,
This way worked! Would you have a script that it would open in a new tab?
Thanks!
Add target='_blank"
$("#form-logo").wrap("<a href='yourLinkHere' target='_blank'>");
You should also put that inside a document ready event to make sure it never runs the code before the form is finished loading.
$(document).ready(function(){ $("#form-logo").wrap("<a href='yourLinkHere' target='_blank'>"); });
Thank you!
You're welcome, but you should mark Rendani's post as the answer. Technically I just added some additional functionality to expand on what he posted.
Ah, I did not realize it removed Rendani's "Mark as Answer" that I did earlier.
Newbie here. :)
Thank you!
No worries! It only allows one answer per question/post, but you can still mark other posts as "helpful" with the thumbs up.