how-to: delete underlines off your links in wordpress genesis theme
Ever wonder how to delete those ‘underline’ off your links from your Genesis theme in WordPress? I know it can be annoying to have it as a default especially if you’re not a huge fan of ‘underlined’ links. Here’s how you can get rid of them:
- Login to your WordPress dashboard.
- Go to “Appearance” > “Editor”
- Now click on the “Style.css” > Find this line of code, and delete it everywhere: border-bottom: 1px solid #ddd;
- You may see them in these areas:
.entry-content a {
border-bottom: 1px solid #ddd;
color: #f15123;
}
.entry-meta a {
border-bottom: 1px solid #ddd;
}
.entry-pagination a {
border-bottom: 1px solid #ddd;
}
.comment-respond a,
.entry-comments a {
border-bottom: 1px solid #ddd;
}
.sidebar a {
border-bottom: 1px solid #ddd;
}
.footer-widgets a {
border-bottom: 1px solid #666;
color: #999;
}
.site-footer a {
border-bottom: 1px solid #ddd;
}