Support » Themes and Templates » Remove post publishing date

Viewing 12 replies - 1 through 12 (of 12 total)
  • What theme are you using? Can you post a link to your site?

    Thread Starter doyatthinkdoy

    (@doyatthinkdoy)

    Hi,

    I am using the Repsonsive theme by cyberchimps. The site address is career.thindkoyen.com

    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

    (@doyatthinkdoy)

    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?

    .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

    (@doyatthinkdoy)

    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

    (@doyatthinkdoy)

    Hi,

    Could you please help me. How do I change the color of the Call to Action button?

    On your site that you previously linked (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

    (@doyatthinkdoy)

    🙂 I’m sorry, I forgot to activate responsive theme before posting the question. I have activated it now. Please check.

    .

    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

    (@doyatthinkdoy)

    Woow! Thanks 🙂

    Thread Starter doyatthinkdoy

    (@doyatthinkdoy)

    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.