调整网页元素的上边距

时间:2012-06-15 23:33:36

标签: javascript jquery html css

在我的页面http://bit.ly/KseVxs上,当我向下滚动页面时,我有一个浮动元素停留在一个位置。

如何调整css以使其显示在页面顶部?现在它显示顶部有额外的空间(参见附页截图)。换句话说,我需要它在此页http://bit.ly/LsWPaC上表现得像一个类似的元素,它使用相同的完整脚本和css。

enter image description here

2 个答案:

答案 0 :(得分:1)

一些建议:

您是否尝试更改插件配置中的偏移值? e.g。

$( '#floater3' ).scrollFollow({
speed: 500,
offset: 0
});

刚刚检查时,偏移量设置为165px。

我还注意到br是滚动对象中的第一个元素。这将在蓝色“呼叫”框上方添加一些额外的填充,这可能是不可取的。

答案 1 :(得分:0)

在你的html中查找:

<div id="floater2" ...

将整个div标签从其起始div切割为其结束div标签。

然后查找这个html块:

<a href="mold-coupons-free" rel="nofollow">
  <img src="images/coupon-free-inspection-town.gif" width="236" height="109" border="0" alt="FREE Mold Inspection coupon">
</a>

粘贴您在&lt; / a&gt;之后立即删除的代码标签,所以它看起来像这样:

<a href="mold-coupons-free" rel="nofollow">
  <img src="images/coupon-free-inspection-town.gif" width="236" height="109" border="0" alt="FREE Mold Inspection coupon">
</a>
<div id="floater2" ... </div>