Is it possible to change the colour of the hyperlinked text?

  • KMACKIN
    Asked on September 23, 2019 at 6:43 PM
    Is it possible to change the colour of the hyperlinked text?
  • VincentJay
    Replied on September 23, 2019 at 6:52 PM

    Is this the form you're working on? https://www.jotform.com/92398424857876

    1569278969fsdt424 Screenshot 10

    Is that what you want to change the color? If yes, may we know what color you want?

    We'll wait for your reply.

  • KMACKIN
    Replied on September 24, 2019 at 2:41 AM

    Hi Vincent,

    Yes, that's the text i would like to change :)


    Is it possible to create two different colours?

    For example, 

    -"View product": #eb6c58

    -"Editors Review": #fa9c8d



    Thanks,

  • Jed_C
    Replied on September 24, 2019 at 3:36 AM

    Yes, it's possible. Please inject the CSS below inside your Image Checkboxes widget's CSS tab.

    #images_button_container > li:nth-child(1) > label > span > a:nth-child(3){

        color: #eb6c58;

    }

    #images_button_container > li:nth-child(1) > label > span > a:nth-child(5){

        color: #fa9c8d;

    }

    #images_button_container > li:nth-child(2) > label > span > a:nth-child(3){

        color: #eb6c58;

    }

    #images_button_container > li:nth-child(2) > label > span > a:nth-child(5){

       color: #fa9c8d;

    }

    #images_button_container > li:nth-child(3) > label > span > a:nth-child(3){

       color: #eb6c58;

    }

    #images_button_container > li:nth-child(3) > label > span > a:nth-child(5){

       color: #fa9c8d;

    }

    #images_button_container > li:nth-child(4) > label > span > a:nth-child(3){

       color: #eb6c58;

    }

    #images_button_container > li:nth-child(4) > label > span > a:nth-child(5){

        color: #fa9c8d;

    }

    #images_button_container > li:nth-child(5) > label > span > a:nth-child(3){

       color: #eb6c58;

    }

    #images_button_container > li:nth-child(5) > label > span > a:nth-child(5){

       color: #fa9c8d;

    }

    Sample output:

    1569310531The Easiest Online Form Builde Screenshot 10

    Let us know if you have any questions or if you need further assistance.