Problem with g+1 height

matthew.hanley Jun 25, 2012 04:20PM EDT

For some reason when I use the following code the "g+1" has been shrunk... it seems its something to do with the .Xp css element.. any ideas how to fix? I'm using inside .NET which is why the <%= %> tags.


<div class="addthis_toolbox addthis_default_style">

<a class="addthis_button_facebook_like" <%="fb:like:layout"%>="button_count"></a>
<a class="addthis_button_linkedin_counter"></a>
<a class="addthis_button_google_plusone" <%=&#39;g:plusone:size="medium"&#39;%>></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>



<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4fe8626d642e89be">
</script>

Up 0 Rated Down
Paul (AddThis Happiness Specialist) Jun 27, 2012 02:20PM EDT
The problem is inside the code you're using to work around ASP.NET is broken. Change this:

<a class="addthis_button_google_plusone" <%=&#39;g:plusone:size="medium"&#39;%>></a>

To this:

<a class="addthis_button_google_plusone" <%="g:plusone:size"%>="medium"></a>

This question is closed to new answers.

Still need help?


General Topics

 

Developers