Remove date on Sandbox theme
-
How do I remove the date for Posts in the Sandbox theme? I have the CSS upgrade and could change the date’s colors which showed up on Firefox & Safari but stayed black in IE (which is what my client uses). They just want to remove the date now. When I put visibility:hidden; display:none; in the (body.date h2.page-title,body.single h2.page-title) tag, it doesn’t disappear. Any suggestions?
-
Those aren’t the right selectors for the date in Sandbox 0.61. Try div.entry-date. Perhaps you should use Sandbox-1.0 instead? There are two Sandbox themes on WordPress.com, you’re using the old one.
Firebug for Firefox is highly recommended for debugging problems with custom CSS.
-
oh wow, thanks – waited a week before trying it because i was getting burned out trying different options, and it worked! this is all i did:
div.entry-date {
visibility:hidden;
display:none;
}thanks bunches!!
- The topic ‘Remove date on Sandbox theme’ is closed to new replies.