Struggling to get Microdata to work on my site! What is the best way of coding the below to simply add a 4 star rating in the serps without visually changing the appearance of the page. <div class="rating"> <img src="../images/4-stars.png" width="100" height="15" alt="4 Stars" /> </div> Overall Rating </div> Code (markup): I've tried the following but this throws up errors, so obviously I'm missing something! <div class="rating" itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"> <span itemprop="value"><img src="../images/4-stars.png" width="100" height="15" alt="4 Stars" rating="4.0" /></span> <meta itemprop="best" content="5" /> </div> Overall Rating </div> Code (markup): Help appreciated!