Quantity Gift Registry widget: How can I change hover text to make it better?

  • LagarderePLUS
    Asked on January 21, 2019 at 8:41 AM

    1548077975Bildschirmfoto 2019 01 21 um 1 Screenshot 10

    Hi everyone, I would like to change the hover text to make it better. How can I do it? I tried with .input_46 hover but it doesn't work. 

    Thanks a lot for your help!

  • Victoria_K
    Replied on January 21, 2019 at 10:55 AM

    From your screenshot, it seems that you are using Quantity Gift Registry widget on your form. Please try the following code, it should be injected to widget's CSS section: How-to-Inject-CSS-Codes-to-Widgets

    .checklist li.hover {

       background: red;

    }

    Feel free to use any color instead of 'red'. 

    Let us know if you need more help. 

  • LagarderePLUS
    Replied on January 21, 2019 at 11:32 AM

    Hi,

    and if I want to change the text color to another color, how can I do it? Thanks again for your help:)


  • Victoria_K
    Replied on January 21, 2019 at 12:41 PM

    Do you mean to change text color on hover? If so, please use this code:

    .checklist li.hover > label {

    color: blue !important; 

    }

    How-to-Inject-CSS-Codes-to-Widgets

  • LagarderePLUS
    Replied on January 21, 2019 at 2:03 PM

    Thanks a lot for your help! And What about items-left? I would like to change the color of it as well.




  • Victoria_K
    Replied on January 21, 2019 at 2:34 PM

    The code to change items left color would be very similar. Here is it:

    .checklist li.hover > .items-left {

    color: blue !important; 

    }

    Please use any color you like instead of blue. Hope this helps.

  • LagarderePLUS
    Replied on January 25, 2019 at 8:15 AM

    Thanks a lot!!!