How to modify class with a space
-
I’m trying to remove the “By [Author]” portion on a posts page. Example: http://turfrugs.com/2012/02/14/custom-trailers/
Currently that <div class=”entry-meta”> includes:
<span class="meta-sep">by</span>
<span class="author vcard">Administrator</span>
I’m able to successfully add .meta-sep {display:none;} but when I add .author vcard {display:none;} it doesn’t appear to be accepted and I’m wondering if this is due to the class having a space in the value.
Any recommendations? Thanks in advance!
The blog I need help with is: (visible only to logged in users)
-
Author and vcard are two separate classes, not one with a space. Just use
.author
or
.vcard -
Ah, thanks for the clarification as that that did the trick. Thanks again thesacredpath!
-
- The topic ‘How to modify class with a space’ is closed to new replies.