Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author John Gardner

    (@jgardner03)

    Hi barneth,

    thank you for using my plugin and for the kind words. Are you using the toggle or accordion configuration?

    Thread Starter barneh

    (@barneh)

    I’m sorry. I don’t understand you’re question?

    Plugin Author John Gardner

    (@jgardner03)

    I apologize, I believe I misunderstood your initial question. The link color you wish to change, is it in the FAQ title or in the FAQ answer?

    Thread Starter barneh

    (@barneh)

    Okay… no worry ??
    In the FAQ answer.

    Plugin Author John Gardner

    (@jgardner03)

    You should be able to target the link color in a FAQ answer this way:

    .arconix-faq-content a {
        color:
    }

    Thread Starter barneh

    (@barneh)

    Thanks that worked!

    I added a change of colour when hover also:

    .arconix-faq-content a {
        color: black;
        border-bottom: 1px solid #FFF;
    }
    
    .arconix-faq-content a:hover {
        color: lightblue;
        border-bottom-color: #FFF;
    }

    But the border-bottom and border-bottom-color statement in a does not work. In faq-content a I get the initial grey colour.
    In faq-content a:hover the colour disappear.

    Plugin Author John Gardner

    (@jgardner03)

    Interesting. My guess is there’s some kind of css conflict or something going on. Do you have a link to this site that I can see?

    Thread Starter barneh

    (@barneh)

    You can look at https://bunkeflostrand.org/faq/
    This site is in Swedish, but if you search for

    Vad kostar samtal per sekund f?r IP-telefoni?

    you will see the link.

    Plugin Author John Gardner

    (@jgardner03)

    line 1741 of style.css sets the border to 0 and that’s overriding the border-bottom you’ve established. If you add !important to the border-bottom declaration you want that should override the more specific css.

    Thread Starter barneh

    (@barneh)

    Thanks!

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