How to remove the hover color?

  • anyroad
    Asked on March 27, 2024 at 5:48 PM

    Can I ask you something else as well please?

    How can I change the color of hoverer so that it does not color when the guest is hovering over a section of the form? Since the text is white, the color does not allow the text to show when it is being hovered over.

    Can we eliminate it and have just a border? If yes, can I select the color of the border? I am attaching a screenshot as well.

    Thank you!! :)

    How to change Hyperlinks color Image 1 Screenshot 20 Screenshot 10

  • Kim JotForm Support
    Replied on March 27, 2024 at 6:00 PM

    Hi anyroad,

    Thanks for patiently waiting. To remove the highlight color, you can follow the steps below:

    • In Form Builder, click on the paint-roller icon on the right side of the page.
    • Scroll and click on Advance Designer blue button.
    • Under Color Scheme, click on the gear icon across simulate highlight.
    • Change the color to black or preferred color, then hit save.

    How to remove the hover color? Image 1 Screenshot 20

    You can test my Demo form here.

    Give it a try and let us know how it goes.

  • anyroad
    Replied on March 27, 2024 at 6:43 PM

    Thank you so much Kim!

    That did the trick! I have one more question (unfortunately!) I will post it here.

    When you hover over the different price choices, it is in black and you cannot see anything until you actually click on it. Let me show you what I mean:

    How to remove the hover color? Image 1 Screenshot 20

    Is there any way to have it appear?

  • Sim JotForm Support
    Replied on March 27, 2024 at 9:49 PM

    Hello anyroad,

    Thank you for getting back to Jotform Support. I’m really sorry that this is happening. I found a way to change the color so that they don't need to hover over the text to see them. By injecting the CSS code below:

    .form-product-name {
        color : white!important;
    }
    .undefined span {
    }
    .fins {
        color : white!important;
    }
    .currency_abr {
    }
    .fins {
        color : white!important;
    }
    #product-name-input_6_1001 {
    }
    #product-name-input_6_1002 {
    }
    .form-line.card-1col.jf-required.form-validation-error.form-line-error {
    }
    #id_6 {
        color : white!important;
    }
    .form-label.form-label-top {
    }
    .form-product-item-detail {
    }
    #cid_6 div.form-product-item-detail {
        color : black!important;
    }
    .form-product-container {
        color : white!important;
    }
    #cid_6 label.form-product-container {
        color : white!important;
    }.form-label.form-label-top {
    }

    Let me show you how to do it:

    1. Go to Form Designer.How to remove the hover color? Image 1 Screenshot 40
    2. Click on Styles,
    3. Enter the CSS Code.How to remove the hover color? Image 2 Screenshot 51

    Here are the results after adding the code:

    How to remove the hover color? Image 3 Screenshot 62

    Give it a try and let us know if you need any other help.

  • anyroad
    Replied on March 28, 2024 at 11:58 AM

    Thank you Sim! That worked! :)