My floating bar currently has 5 social buttons, but I've noticed that the Facebook button is shifting about 20 pixels to the left. Could this be an issue with the CSS elements?
After inspecting the elements, I found that when I remove position: absolute;
from the code snippet below, the button returns to its normal position. However, I'm concerned that this fix may cause issues in other browsers.
.fb_iframe_widget iframe {
position: absolute;
}
If anyone has any insights or solutions to this problem, it would be much appreciated!