ran into this exact problem yesterday. wrapped with the name namedpaced plus one tag in the div and floated to the right.
you can always use the stylesheet to override the inline styles that google cable
therefore for markup:
<div class="myPlusOneWrapper"> <div id="theActualPlusOneWrapper" style="whatever google send down the wire"> </div> </div>
you can have this CSS:
.myPlusOneWrapper { float: right; } .myPlusOneWrapper > div { width: auto !important; }
the width will then be adapted as broadly as it should be, and will take precedence over Google's inline style
Js feed
Wickyilliams
source share