How can I change the hover effect color?

  • Mnajib
    Asked on May 11, 2017 at 11:53 PM

    How can I get the color of a link to change when a mouse is hovered over it? 

  • John_Benson
    Replied on May 12, 2017 at 2:49 AM

    If you're referring to this background color shown in the image below:

    How can I change the hover effect color?  Image 1 Screenshot 30

    You can change it by adding custom CSS code. Here's the custom CSS code:

    .form-line-error { 

        background-color: #464646 !important; 

    You can change the hex color code to your own preferences. For more hex color code, please check this link: http://www.color-hex.com/

    Here's a guide on: How-to-Inject-Custom-CSS-Codes

    Result:

    How can I change the hover effect color?  Image 2 Screenshot 41

    If you have questions, please contact us again. Thank you.

  • Mnajib
    Replied on May 12, 2017 at 3:26 AM

    No. Im talking about the text, when you put a link on the text. I want the text/link to turn a different color when the mouse hovers over. 

  • candy
    Replied on May 12, 2017 at 3:38 AM

    Hello,

    To my understanding, you want to write a URL inside the text field and you want to change its color when you hover on it as seen below:

    How can I change the hover effect color?  Image 1 Screenshot 30

    You can inject the following CSS code in order to change its color when hovering on it as you can see in the following screencast below:

    a:hover {

        color: hotpink;

    }

    How can I change the hover effect color?  Image 2 Screenshot 41

    Please try and if you need further assistance, let us know.

    Thanks.

  • Mnajib
    Replied on May 12, 2017 at 9:00 AM

    Does the same CSS code work if I want to write the words "click here" inside a textfield and hyperlink the "click here" to redirect them to a different page? 

  • candy
    Replied on May 12, 2017 at 9:06 AM

    Hello,

    Yes, the same CSS code will work as you can see the screencast below:

    How can I change the hover effect color?  Image 1 Screenshot 20

    Please try and if you need any further assistance, let us know.

    Thank you.