I was trying to implement this for my website:
http://googlewebmastercentral.blogspot.in/2013/05/using-schemaorg-markup-for-organization.html
I have a quick doubt on this:
Is it compulsory to tag existing visible on page elements on homepage?? say if we don't have a visible logo image on homepage, Can we add a separate logo image in a piece of code in body section as mentioned like :
<div itemscope itemtype="http://schema.org/Organization" style="display:none;">
<a itemprop="url" href="http://myDomain.com/"></a>
<img itemprop="logo" src="http://myDomain.com/logo.png" /> </div>
So, if i add CSS "display:none" to my DIV and place anywhere on body, Will it be considered by google for Organizational markup??
CSS style "display:none" can be added from CSS file, Will this work?