Cannot position Google +1 button with CSS?
Posted
by
Bogdan Protsenko
on Stack Overflow
See other posts from Stack Overflow
or by Bogdan Protsenko
Published on 2012-06-12T22:35:48Z
Indexed on
2012/06/12
22:40 UTC
Read the original article
Hit count: 261
I'm having some trouble positioning the Google +1 button on my website. The div is as follows:
<div class="g-plusone"></div>
The CSS I'm using is pretty simple:
.g-plusone
{
position: absolute;
top:95px;
left:715px;
}
I know for a fact that the div in question is being accessed. What's strange is that other social sharing buttons, such as the FB like below follow the same syntax and are positioned perfectly.
.fb-like
{
position: absolute;
top:62px;
left:715px;
}
Any ideas?
© Stack Overflow or respective owner