Title: Remove Date?
Last modified: August 30, 2016

---

# Remove Date?

 *  Resolved [Won Hee](https://wordpress.org/support/users/won-hee/)
 * (@won-hee)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/remove-date-8/)
 * Hello, I love this theme but was wondering if there is a way to remove the dates
   on the featured images?
 * Thanks for your help
 * Won Hee

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/remove-date-8/#post-6522888)
 * To remove the date on single posts, add this to your custom CSS:
 *     ```
       .single .posted-on {
         display: none;
       }
       ```
   
 * Don’t edit the theme files directly, otherwise your changes will be overwritten
   every time the theme is updated to the latest version.
 * An easy way to add custom CSS is to install the [Jetpack plugin](http://jetpack.me/)
   and activate the [Custom CSS](http://jetpack.me/support/custom-css/) module. 
   You’ll then add your custom CSS in the new stylesheet editor that’ll appear in
   your dashboard, under Appearance > Edit CSS.
 * As alternatives, you could either install a [standalone custom CSS plugin,](http://wordpress.org/plugins/search.php?q=custom+css)
   or create a [child theme.](http://codex.wordpress.org/Child_Themes)
 *  Thread Starter [Won Hee](https://wordpress.org/support/users/won-hee/)
 * (@won-hee)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/remove-date-8/#post-6522932)
 * Hello
 * Thanks for your help.
 * This css worked perfectly within the post pages but I still see the dates on 
   the homepage.
    Is there a way to remove them from the home?
 * Thanks again
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/remove-date-8/#post-6522971)
 * Sure, you can add this to hide the dates on the blog page grid, but keep the 
   same amount of vertical space:
 *     ```
       .home .posted-on {
         visibility: hidden;
       }
       ```
   
 * Or, you can hide the date and the space it takes up, and then add back some margin
   above the post titles:
 *     ```
       .home .posted-on {
         display: none;
       }
       .home .entry-title {
         margin-top: 15px;
       }
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove Date?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/cubic/1.0.7/screenshot.png)
 * Cubic
 * [Support Threads](https://wordpress.org/support/theme/cubic/)
 * [Active Topics](https://wordpress.org/support/theme/cubic/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/cubic/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/cubic/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/remove-date-8/#post-6522971)
 * Status: resolved