尝试向上移动 iframe

Trying to move an Iframe up

我正在尝试向 WordPress 添加额外的 CSS 以使用 Bottom: 将 iframe 向上移动,并将其从 28px 更改为 71px,但我终其一生都无法让它工作。

我尝试添加的 CSS 是:

.LeadBoosterContainer{
     bottom: 50px !important;
 }

“底部”属性 只有在设置了“静态”(默认)以外的位置 属性 时才真正起作用。 您可能想要使用的是边距。 margin-bottom 或负 margin-top。 Margin-bottom 会将 iframe space 提供给它下面的下一个元素。 一个负的 margin-top 基本上会把它“拉”起来,这听起来像是你想要做的。

但是,如果你想使用底部 属性,你将需要玩定位。 在这里,您可以阅读底部 属性 如何根据位置-属性 工作:https://www.w3schools.com/cssref/pr_pos_bottom.asp

通过参考下面的 div id pipedrive-chat-holder 修复了它

#LeadboosterContainer.proactiveChat{
     bottom: 80px !important;
}