Advertisement
arie_cristianD

custom style for single post link

Jan 27th, 2025
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. /* JNews || Custom style for link in the single post like https://www.tecmundo.com.br/ */
  2. .single-post .post-wrapper .content-inner  a:not(.next):not(.prev) {
  3.     border-bottom: 1px solid #0083df;
  4.     transition: all .2s ease;
  5. }
  6.  
  7. .single-post .post-wrapper .content-inner  a:hover {
  8.     background-color: rgb(0 127 223 / 10%);
  9.     border-bottom-color: transparent;
  10.     color : #0083df ;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement