Reputation: 219
I'm having trouble isolating the problem I'm having, some stray CSS. Here's my website: http://www.derekbeck.com/1775/info/july2012mag/
Can anyone tell me what CSS is causing the Share button, when you mouseover it, to pop up off on the right side instead of directly next to the share button?
Thanks, Derek
Upvotes: 1
Views: 225
Reputation: 2122
You need to remove position:relative
under #addthis
in your CSS file:
#addthis
{
position:relative;
top:-2px;
left:2px;
}
Should be:
#addthis
{
top:-2px;
left:2px;
}
BTW, I'd suggest you put all your CSS code into a single, separate file.
Upvotes: 1