Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
1.3k views
in Plugins by
The facebook like button is not alligned with the others. I tried to move his position to see if problem is with 1st element in the row but the problem was still with the facebook button no matter it's positioning.

URL that shows the problem:

http://www.softworld.com/qa/10/how-can-i-make-opera-to-display-the-browsing-speed
Q2A version: 1.4.3
by
Also I think a good option for easy customization and tracking of sharing would be integration with AddThis

1 Answer

+1 vote
by
selected by
 
Best answer

This is a css problem; I've updated the default css, try putting to code below into the admin/plugins share css box:

#qa-share-buttons-container {
    background: none repeat scroll 0 0 #DDDDDD;
    font-size: 125%;
    font-weight: bold;
    margin: 20px 0;
    padding: 20px;
    text-align: center;

}
#qa-share-buttons {
    vertical-align:middle;
}
.share-widget-container {
    display:inline-block;
    poisiton:relative;
}
.qa-share-button {
    width: 54px;

}

by
the page to edit is qa-share-admin.php right?
by
no, please read the original answer, as it tells you where to put the code.
by
ohh, I completely misunderstood that. Changed where you said and is fixed now. Thanks a lot
asked Dec 29, 2011 in Plugins by anonymous Facebook like - css problem
...