Hi there, I have put this code together for my breadcrumbs using shema.org. Does it look ok to you guys? <div class="container-fluid breadcrumbs hidden-xs"> <div class="container"> <div itemscope itemtype="http://data-vocabulary.org/BreadcrumbList"> <a href="./" itemprop="url"><span class="fa fa-home"></span><span itemprop="title">Home</span></a> / <a href="./"><span itemprop="title">Services</span></a> / <span itemprop="title">Website Design</span></a> </div> </div> </div> Code (markup): Also, I have H1 headers on my page such as <h1>My Service</h1> Code (markup): Is there any schema I can apply to this? Thanks!
It is easier to run it in Structured Data test tool here: https://search.google.com/structured-data/testing-tool At the first glance, your itemprop of url shows a relative path. It would be better to provide a full url.
You could probably try something like this: <h1 itemprop="name">Your title</h1> Code (markup): The above should come within a Div - properly identified itemscope and itemtype. Your best reference would be this : http://schema.org/docs/gs.html#microdata_itemscope_itemtype