Remove date circle from posts?

Discussion in 'BizWay WordPress Theme' started by stomputron, Feb 11, 2013.

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

    stomputron New Member

    Joined:
    May 10, 2012
    Messages:
    11
    Likes Received:
    0
    How can I remove the date circle from posts? I do not want the date to appear on any posts.

    Of lessor importance: is there a way to remove the "posted by...." and "posted in..." and the comment on/off box?

    I would like the posts to basically only show the title and post content.

    http://31806.vws.magma.ca/index.php/rbc-south-keys/

    thx
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .post_date {
    display: none;
    }
    .content-bar .post .post_meta {
    display: none;
    }
    Thsi will solve your issue.
     
  3. stomputron

    stomputron New Member

    Joined:
    May 10, 2012
    Messages:
    11
    Likes Received:
    0
  4. stomputron

    stomputron New Member

    Joined:
    May 10, 2012
    Messages:
    11
    Likes Received:
    0
    is there a way to have the post title justify all the way left again? It appears inset from the left by the space equal to where the date circle used to be.
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .content-bar .post .post_title {
    padding-left: 0px;
    }
    adjust the value of padding-left as you required.
    This will solve your issue.
     
  6. stomputron

    stomputron New Member

    Joined:
    May 10, 2012
    Messages:
    11
    Likes Received:
    0
    Beautiful. Thank you.
     
Thread Status:
Not open for further replies.

Share This Page