我已经在我的网站上实现了AddThis插件,但是,当我调整浏览器的宽度并且在它达到@meduim
屏幕样式之前,more
图层显示在错误的浮动位置
我从他们的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
以熟悉这个问题所以你可以给我一些浮动问题的建议吗?
答案 0 :(得分:0)
我遇到了同样的问题,我将这个小css添加到了我的页面,现在more
- 图层向左打开,而不是向右打开。
然后,您应该尝试在媒体查询中重置这些样式以用于较小的屏幕。
#at15s.atm {
left:auto !important;
right:0 !important;
}