I'm using the Vigilance theme with the CSS customization package. What CSS code do I need to make the links underlined (without hover, before they're visited)? Thanks.
The blog I need help with is markbbrown.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
I'm using the Vigilance theme with the CSS customization package. What CSS code do I need to make the links underlined (without hover, before they're visited)? Thanks.
The blog I need help with is markbbrown.com.
Do you want all your links to be underlined? If so this generic code will do it for you:
a:link {<br />
text-decoration: underline;<br />
}
If you want speciific links only to be underlined then you need explain further and provide a valid link to your site.
GL
That should do it, thanks!
Thanks for your previous reply. The only problem is that it makes all the links on the site underlined, including the list of recent posts, post titles, tags, and even the blog title. Is there a way to make it so that only the links inside posts are underlined? Thanks. Here's my blog: http://markbbrown.com/
Try this:
.entry a:link {
text-decoration: underline;
}
This topic has been closed to new replies.