Remove Calendar And Author Icon

Discussion in 'HTML & Website Design' started by kertoon, Jul 5, 2014.

  1. #1
    This is the code in content.php:

    <div class="pull-right"><?php edit_post_link(__('Edit', 'prnews'),'<i class="icon-pencil"></i> ',''); ?></div>
    <div class="pull-left"><i class="icon-calendar"></i> <?php echo get_the_date();?> &nbsp; <i class="icon-user"></i> <?php the_author_posts_link(); ?></div>

    I tried commenting out and even deleted both the icon-calendar and icon-user. Not working.
     
    kertoon, Jul 5, 2014 IP
  2. AlbCoder

    AlbCoder Well-Known Member

    Messages:
    126
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    163
    #2
    You can do that using css too :)
    .pull-left .icon-calendar .icon-user{
    display:none;
    }
    
    Code (CSS):
     
    AlbCoder, Jul 6, 2014 IP
  3. kertoon

    kertoon Well-Known Member

    Messages:
    187
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    133
    #3
    Ok. Thank you.
     
    kertoon, Jul 6, 2014 IP