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?
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.
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.
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 http://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.
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.