@Juan2579
David
@David404-devAll comments
- @David404-dev
You can use the border-bottom property in css for those links and when you hover over those links you can also change the color.
For example:
.learn-more-link { border-bottom: 5px solid pink; }
.learn-more-link:hover { border-bottom: 5px solid orange; }
If you don't want the colors to change instantly, check out the transition property.
Marked as helpful