Viewing 6 replies - 1 through 6 (of 6 total)
  • change:

    .translate_translate {
    font-weight: normal !important;
    margin-bottom: 0.5em;
    text-decoration: none !important;
    }

    to:

    #header .translate_translate {
    font-weight: normal !important;
    margin-bottom: 0.5em;
    text-decoration: none !important;
    color: YOUR_COLOR_HERE;
    }

    then change:

    .translate_links a {
    display: block;
    font-weight: normal !important;
    line-height: 1.5;
    text-decoration: none !important;
    white-space: nowrap;
    }

    to:

    .translate_links a {
    display: block;
    font-weight: normal !important;
    line-height: 1.5;
    text-decoration: none !important;
    white-space: nowrap;
    color: #000;
    }

    in order to set the sub links back to black.

    Thread Starter flopez01

    (@flopez01)

    Thanks for the quick reply,

    But where do I find that code? style.css?

    Fernando

    Thread Starter flopez01

    (@flopez01)

    Ah ha, found it.

    Thanks for the help. Much appreciated.

    How do I make the links underline when I hover.
    Can I just add some code in?

    .translate_links a:hover {
    text-decoration: underline;
    }
    Thread Starter flopez01

    (@flopez01)

    I tried that code,
    but nothing changed.

    Thread Starter flopez01

    (@flopez01)

    Hello everyone,

    Thanks for your help tugbucket.

    I just needed to label it as: !important;

    .translate_links a:hover {
    text-decoration: underline !important;
    }

    Thanks again,
    Fernando

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change text color on translation button plugin’ is closed to new replies.