Title: Remove post publishing date
Last modified: August 22, 2016

---

# Remove post publishing date

 *  [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/)
 * Hi,
 * Could you please help me. I want to remove the date of publishing of the posts.
 * Doyan

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

 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555328)
 * What theme are you using? Can you post a link to your site?
 *  Thread Starter [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555536)
 * Hi,
 * I am using the Repsonsive theme by cyberchimps. The site address is career.thindkoyen.
   com
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555538)
 * Your site is in maintenance mode, so I couldn’t look at it to verify, but this
   CSS should work. You should enter this CSS in your theme’s custom CSS option (
   Dashboard > Appearance > Theme Options > CSS Styles):
 *     ```
       .post-meta .posted,
       .post-meta time {
       	display: none;
       }
       ```
   
 *  Thread Starter [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555539)
 * Hi
 * Thank you for the code, it works. I have disabled the maintenance mode, you can
   check it out.
 * Thanks again.
 * PS: Is it possible to change the color of the navigation bar from black to blue?
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555543)
 *     ```
       .menu {
         background-color: #0000ff;
       }
       ```
   
 * Or, to keep the subtle gradient:
 *     ```
       .menu {
         background-color: #0000ff;
         background-image: -webkit-gradient(linear, left top, left bottom, from(#0000ff), to(#3333ff));
         background-image: -webkit-linear-gradient(top, #0000ff, #3333ff);
         background-image: -moz-linear-gradient(top, #0000ff, #3333ff);
         background-image: -ms-linear-gradient(top, #0000ff, #3333ff);
         background-image: -o-linear-gradient(top, #0000ff, #3333ff);
         background-image: linear-gradient(top, #0000ff, #3333ff);
         filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0000ff, endColorstr=#3333ff);
       }
       ```
   
 *  Thread Starter [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555550)
 * Hi
 * It works. I was able to change the color.
 * I am new to WordPress and so don’t know a lot. Thank you again for the help.
 * Regards
    Doyan
 *  Thread Starter [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555641)
 * Hi,
 * Could you please help me. How do I change the color of the Call to Action button?
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555642)
 * On your site that you previously linked ([http://career.thinkdoyen.com](http://career.thinkdoyen.com)),
   I don’t see a button labeled “Call to Action”. Can you post a link to a page 
   that shows the button you’d like to change?
 *  Thread Starter [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555643)
 * 🙂 I’m sorry, I forgot to activate responsive theme before posting the question.
   I have activated it now. Please check.
 * .
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555644)
 * Assuming you’d like to keep the same subtle gradient on your navigation bar, 
   use this:
 *     ```
       .call-to-action a.button {
         background-color: #0000ff;
         background-image: -webkit-gradient(linear, left top, left bottom, from(#0000ff), to(#3333ff));
         background-image: -webkit-linear-gradient(top, #0000ff, #3333ff);
         background-image: -moz-linear-gradient(top, #0000ff, #3333ff);
         background-image: -ms-linear-gradient(top, #0000ff, #3333ff);
         background-image: -o-linear-gradient(top, #0000ff, #3333ff);
         background-image: linear-gradient(top, #0000ff, #3333ff);
         filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0000ff, endColorstr=#3333ff);
       }
       ```
   
 *  Thread Starter [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555645)
 * Woow! Thanks 🙂
 *  Thread Starter [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * (@doyatthinkdoy)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555668)
 * Hi,
 * Could you do me another favor? Please tell me how to change the color of the 
   font in the navigation bar.
 * Thanks in advance
    Doyan

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

The topic ‘Remove post publishing date’ is closed to new replies.

## Tags

 * [publishing date](https://wordpress.org/support/topic-tag/publishing-date/)

 * 12 replies
 * 2 participants
 * Last reply from: [doyatthinkdoy](https://wordpress.org/support/users/doyatthinkdoy/)
 * Last activity: [11 years, 4 months ago](https://wordpress.org/support/topic/remove-post-publishing-date/#post-5555668)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
