How to remove the date place holder

Discussion in 'BizWay WordPress Theme' started by mkeckler, Apr 15, 2013.

Thread Status:
Not open for further replies.
  1. mkeckler

    mkeckler New Member

    Joined:
    Jan 25, 2013
    Messages:
    18
    Likes Received:
    0
    my content is not date sensitive, and I want remove the dates on posts and the blog page. I found a way to add a piece of code to the functions.php page to remove the date. It worked. However, the date place holder is still showing. Is there any way to remove it?

    You can see what I'm talking about at www.Superbcommunication.com/blog

    Thank you.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar .post .post_date {
    background: none;
    }
    This will solve your issue.
     
  3. mkeckler

    mkeckler New Member

    Joined:
    Jan 25, 2013
    Messages:
    18
    Likes Received:
    0
    Thank you for the quick response. Does it matter where I place the code? I'm not a coder, so I proceed with caution when I have to modify anything.
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Always try to place css code in the custom css as suggested before. It will help you for your future modifications.
     
    mkeckler likes this.
  5. blackballs

    blackballs Guest

    Joined:
    Nov 21, 2012
    Messages:
    3
    Likes Received:
    0
    how do i remove the entire date including placeholder?
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar .post .post_date {
    display: none;}
    .content-bar .post .post_title {
    padding-left: 0px;}
    .content-bar .post .post_meta {
    padding-left: 0px;}
    .content-bar .post .post_meta .posted_by {
    padding-left: 0px;}
     
  7. mkeckler

    mkeckler New Member

    Joined:
    Jan 25, 2013
    Messages:
    18
    Likes Received:
    0
    Fabulous! Thank you.
     
Thread Status:
Not open for further replies.

Share This Page