• Resolved Eddie_wen

    (@eddie_wen)


    Hi, I put in Additional JavaScript like this:

    a2a_config.icon_color = “#FFFFFF,#000000”;a2a_config.color_link_text_hover = “#0000ff”;
    a2a_config.color_link_text = “#FFFFFF”;

    But when I hovered the universal links, they remain black, i.e. they didn’t change to #0000ff when hovered. Why am I missing?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author micropat

    (@micropat)

    Use vertical quotes (“”) in your code instead of curly quotes (“”), and remove the # from the last two values:

    a2a_config.icon_color = "#FFFFFF,#000000";
    a2a_config.color_link_text_hover = "0000ff";
    a2a_config.color_link_text = "FFFFFF";
    • This reply was modified 7 years, 9 months ago by micropat.
    Thread Starter Eddie_wen

    (@eddie_wen)

    Resolved, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Universal links don’t change color when hovered’ is closed to new replies.