On vw3, I had my auto-link CSS customized. Where in the template can I edit it again? (I leave the text color the same and make the link a dotted underline, it's less intrusive and makes the post easier to read.
On vw3, I had my auto-link CSS customized. Where in the template can I edit it again? (I leave the text color the same and make the link a dotted underline, it's less intrusive and makes the post easier to read.
It's not defined in any template. The class you want to modify is .vw-link-auto
It stacks on top of .vw-link, so you probably have to duplicate some properties to achieve the look you want.
You can add your CSS rule to additonal.css or any other location you use for custom CSS. It is not advised to modify the vw.css directly unless absolutely necessary, due to conflicts when upgrading.
- lead developer for VaultWiki
Got it. Final code is:
Code:.vw-link-auto, .vw-link:hover, .vw-link{ text-decoration: none; border-bottom: 1px #ffcc00 dotted !important; }
Bookmarks