NOT underlining post title links when hovering in Oxygen?
-
Hi,
My post titles become underlined when you hover over them. Any idea what the selector is to remove this? I have tried this:
h1.entry-title a:hover {
color: #000456;
text-decoration: none;
}Changing the colour has worked, but the non underline did not. Any idea?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Instead of an underline text decoration, they are using a bottom border declaration. Add the following to your CSS to get rid of that border.
h1.entry-title a:hover { border: none; } -
Indeed! (I am starting to feel stupid that I did not figure this out myself. Your help is great!)
Thanks.
-
Not a problem, and don’t feel stupid. We all have those times when the obvious isn’t obvious. :)
You’re doing great and your site is looking awesome.
- The topic ‘NOT underlining post title links when hovering in Oxygen?’ is closed to new replies.