Hello ~ I seem to have an extra caret symbol in my breadcrumbs and can't get rid of it.
This shows up on internet:
www.example.com › Cat > › SubCat
for below code:
<div class="crumbs">
<ul itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="http://www.example.com/">
<span itemprop="name">Home ></span></a>
<meta itemprop="position" content="1"></li>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="http://www.example.com/cat.html">
<span itemprop="name">Cat ></span></a>
<meta itemprop="position" content="2"></li>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="http://www.example.com/subcat.html">
<span itemprop="name">SubCat</span></a>
<meta itemprop="position" content="3"></li></ul></div>
Any help would really be appreciated.