0
timlutz1
Is there a way to make a link look like its active in an accordion? When I scroll over the link with my mouse I would like it to change color to indicate that the link is clickable, but it currently does not do that.
2 Subscribers


Submit Answer
1 Answers
Best Answer
0

Welcome to our forum.
You can custom CSS to highlight links under accordion content, please try following CSS
.accordion-content a { color: #f00; }
See the screenshot how it works.
https://imgur.com/a/gsoLS
Regards
Nevermind, I figured it out. This worked…
.accordion-content a:hover { color: red !important; }