Post Display

Discussion in 'Local Business WordPress Theme' started by michel01, Jan 23, 2014.

  1. michel01

    michel01 Member

    Joined:
    Nov 13, 2013
    Messages:
    35
    Likes Received:
    0
    My Post content is in "Default Template" but I would like to display it in " fullwidth" display.
    How do you remove all the other contents on a Post page like time and date it was posted, author, etc. Basically make your Post look like a regular page on display.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Firstly, go to the single.php file present in your theme directory and
    follow the instruction shown in the image given below

    [​IMG]

    [​IMG]

    This will make the post page fullwidth.


    Now Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
     .content-bar .post .post_meta {
    display: none;
    }
    
    This will remove the post meta bar.
     

Share This Page