How to change the hyperlinked text effect?
-
I’ve tried to follow some posts, but don’t know why it’s not working, or is it achievable?
This is the CSS code for my table
/* Single word CSS */ .tablepress.single-word th { background-color: navy; color: white; white-space: nowrap; vertical-align: middle; text-align: center; } .tablepress.single-word tbody td { border: solid 1px; border-color: #b4b5b8; word-break: normal !important; text-align: center; } .tablepress.single-word.column-1 tbody td { width: auto !important; } .tablepress.single-word tbody td { border: solid 1px; border-color: #b4b5b8; word-break: normal !important; text-align: center; } .tablepress.single-word-hover a { text-decoration: underline; text-decoration-color: #a3420a; position: relative; } .tablepress.single-word-hover tr:hover a { content: ''; position: absolute; left: 0; bottom: 1px; width: 100%; height: 5px; z-index: -1; transition: all .3s ease-in-out; } .tablepress.single-word-hover tr a:hover { background-color: #ffb300; bottom: 0; height: 100%; }
I’m trying to achieve the css effect similar to my post
.single-post-css a { text-decoration: underline; text-decoration-color: #a3420a; position: relative; } .single-post-css a::before { content: ''; position: absolute; left: 0; bottom: 1px; width: 100%; height: 5px; z-index: -1; transition: all 0.3s ease-in-out; } .single-post-css a:hover::before { background-color: #ffb300; bottom: 0; height: 100%; }
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘How to change the hyperlinked text effect?’ is closed to new replies.