removing text decoration from entry date
-
the css editing for font size works under
.entry-date { font-size: 14px; }but when i try and remove text decoration it has no effect (adding it in as
text-decoration:none;below the font-size alteration.
Any suggestions as to what I’m doing wrong?The blog I need help with is: (visible only to logged in users)
-
Hi there,
Since you understand CSS, I’ll explain a bit. Your text-decoration syntax was correct, but the targeting was incorrect. This is because .entry-date refers to the span tag inside the a tag. Meanwhile, it is the a itself that contains the text-decoration, not the span.
So you should remove the text decoration from the a tag instead instead:
.entry-meta a { text-decoration: none; }
- The topic ‘removing text decoration from entry date’ is closed to new replies.