• Resolved Oriante

    (@oriante)


    Hello, how can I change the color of the blue ‘tag’ links? I couldn’t find it in the style.css.

Viewing 10 replies - 1 through 10 (of 10 total)
  • Theme Author aaviya

    (@aaviya)

    Hi,
    you can add this to style.css file:

    .tags-links a {
       color:YOUR_COLOR_HERE;
    }
    .tags-links a:hover {
       color:YOUR_COLOR_HERE;
       text-decoration: underline; /*Optional*/
       border-bottom:none; /*Optional*/
    }

    Thread Starter Oriante

    (@oriante)

    Uhm I added the codes with the editor in admin panel but nothing changed?

    .tags-links a {
       color:#CC90E8;
    }
    .tags-links a:active {
       color:#CC90E8;
    }
    .tags-links a:hover {
       color:#B265D6;
       text-decoration: none; /*Optional*/
       border-bottom:none; /*Optional*/
    }
    Theme Author aaviya

    (@aaviya)

    try with

    .entry-meta a {
       color:#CC90E8;
    }
    .entry-meta a:active {
       color:#CC90E8;
    }
    .entry-meta a:hover {
       color:#B265D6;
       text-decoration: none; /*Optional*/
       border-bottom:none; /*Optional*/
    }

    Thread Starter Oriante

    (@oriante)

    Nope that didn’t work too 🙁

    Theme Author aaviya

    (@aaviya)

    Can you give me a link to your website?

    Thread Starter Oriante

    (@oriante)

    Theme Author aaviya

    (@aaviya)

    Hi,
    the code is working, just have to put it at the end of style.css 🙂

    Thread Starter Oriante

    (@oriante)

    No changes :S

    Thread Starter Oriante

    (@oriante)

    You know I mean the tags on the right side (at widgets menu) right?

    Theme Author aaviya

    (@aaviya)

    Good point 🙂
    change the css to:

    .entry-meta a,
    .tagcloud a {
       color:#CC90E8;
    }
    .entry-meta a:active,
    .tagcloud a:active {
       color:#CC90E8;
    }
    .entry-meta a:hover,
    .tagcloud a:hover {
       color:#B265D6;
       text-decoration: none; /*Optional*/
       border-bottom:none; /*Optional*/
    }

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Blue links’ is closed to new replies.