Inserting a colored text link

  • jboff
    Asked on December 2, 2014 at 12:05 PM

    How do I add a link in blue to a text box. For example in text it would say "for more information go to www.abc.com or contact steve@abc.com

  • Jan
    Replied on December 2, 2014 at 1:05 PM

    Hi,

    As I understand, you want to insert a blue text link in the form right?

    I can see that you know how to add text in the form. So after adding text, you need to edit it. Click the HTML button for the HTML editor to appear. 

    Inserting a colored text link Image 1 Screenshot 20

    If the link was already visited, it will turn purple as a default. So we will add an inline CSS to make sure it is colored blue even if the website was already visited by the user.

    I added style="color: blue;" attribute on the <a> tag so your HTML code should look like these.

    <a style="color: blue;" href="http://www.jotform.com">JotForm</a>

    Click Update and Save the form.

     

    Hope this helps. Let us know if not so we can further assist you.

    Thanks!

    Jan

  • Jan
    Replied on December 2, 2014 at 1:29 PM

    Hi,

    Add an email for website link to jot form.

    This is regarding the original title you posted. I'm not sure if I understand it correctly but you want to make the email as a link right?

    If so, then just add the "mailto:" function. For example:

    <a href="mailto:steve@abc.com">steve@abc.com</a>

    Hope this helps. Thank you.