修复'AddThis'插件'更多层'浮动

时间:2014-07-19 17:38:17

标签: javascript html css addthis

我已经在我的网站上实现了AddThis插件,但是,当我调整浏览器的宽度并且在它达到@meduim屏幕样式之前,more图层显示在错误的浮动位置

enter image description here

我从他们的css实施

中抓取了这个out of the box
element.style 
{
   z-index: 1000000;
   position: absolute;
   visibility: visible;
   top: 681px;
   left: 753px;
   display: none;
}

#at15s.atm 
{
   background: none!important;
   padding: 0!important;
   width: 160px!important;
}

我确实引用了他们提供的这个js file,并且它会照顾我猜的CSS。我应该与你们分享css以熟悉这个问题所以你可以给我一些浮动问题的建议吗?

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,我将这个小css添加到了我的页面,现在more - 图层向左打开,而不是向右打开。 然后,您应该尝试在媒体查询中重置这些样式以用于较小的屏幕。

#at15s.atm {
    left:auto !important;
    right:0 !important;
}