Hi Nick,
Find this code in the following files:
wp-content\themes\angular\includes\format-standard.php (line 65-66)
wp-content\themes\angular\includes\format-gallery.php (line 66-67)
echo $portfolio_cats;
echo ' </span><span class="text-sep">/</span> ';
replace it with:
echo $portfolio_cats;
echo ' </span> ';
Open another set of files:
wp-content\themes\angular\includes\format-link.php (line 90-92)
wp-content\themes\angular\includes\format-quote.php (line 74-76)
echo '<span class="blog-author minor-meta">'.__('by ','avia_framework');
the_author_posts_link();
echo '</span><span class="text-sep">/</span>';
replace it with:
echo '<span class="blog-author minor-meta">'.__('by ','avia_framework');
the_author_posts_link();
echo '</span>';
Hope this helps.
Regards,
Ismael