Hey,
1) The graphic can be found here: wp-content/themes/broadscope/images/skin1/bg-meta.png - you can replace it with any other image or use the psd files to modify the shape, etc.
2) To remove the date, etc. open up single.php and replace:
<span class='post-date-comment-container'>
<span class='date-container'><?php the_time('d') ?><strong><?php the_time('M') ?></strong><?php the_time('Y') ?></span>
<span class='comment-container'><?php comments_popup_link("<strong>0</strong> ".__('Comments','avia_framework'), "<strong>1</strong> ".__('Comment' ,'avia_framework'),
"<strong>%</strong> ".__('Comments','avia_framework'),'comments-link',
"<strong></strong> ".__('Comments<br/>Off','avia_framework')
); ?>
</span>
</span>
<?php
$cats = get_the_category();
if(!empty($cats))
{
echo '<span class="blog-categories">';
echo '<strong>Categories:</strong>';
the_category(', ');
echo '</span>';
}
if(has_tag())
{
echo '<span class="blog-tags">';
the_tags('<strong>'.__('Tags: ','avia_frameworkt').'</strong>');
echo '</span>';
}
?>
with:
<?php if( get_post_type() != 'portfolio' ) { ?>
<span class='post-date-comment-container'>
<span class='date-container'><?php the_time('d') ?><strong><?php the_time('M') ?></strong><?php the_time('Y') ?></span>
<span class='comment-container'><?php comments_popup_link("<strong>0</strong> ".__('Comments','avia_framework'), "<strong>1</strong> ".__('Comment' ,'avia_framework'),
"<strong>%</strong> ".__('Comments','avia_framework'),'comments-link',
"<strong></strong> ".__('Comments<br/>Off','avia_framework')
); ?>
</span>
</span>
<?php
$cats = get_the_category();
if(!empty($cats))
{
echo '<span class="blog-categories">';
echo '<strong>Categories:</strong>';
the_category(', ');
echo '</span>';
}
if(has_tag())
{
echo '<span class="blog-tags">';
the_tags('<strong>'.__('Tags: ','avia_frameworkt').'</strong>');
echo '</span>';
}
?>
<?php } ?>