I’m having the same problem. Just installed plugin. Google recognizes that I’ve granted access for the plugin to access my account. WP 3.4.2
I’d like to know how to do this too. For now, I’ve changed the comment-template file to accommodate what I need but it feels like a poor solution.
Thread Starter
rhizal
(@rhizal)
I just deleted the plugin and added the class “shadows” to my pics. Then I use this CSS:
.shadow {
-moz-box-shadow: 2px 4px 8px #A2A2A2;
-webkit-box-shadow: 2px 4px 8px #A2A2A2;
box-shadow: 2px 4px 8px #A2A2A2;
/* For IE 8 */
-ms-filter: “progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=145, Color=’#A2A2A2′)”;
/* For IE 5.5 – 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=145, Color=’#A2A2A2′);
}