Hubspot 着陆页样式

Hubspot Landing Page Styles

我在 HubSpot 中创建登陆页面时无法覆盖 html 样式。我要添加

html {
  overflow-x: hidden
}

但它一直默认为

html {
  overflow: auto
}

我已经尝试 !important,将其添加到页眉、页脚、自定义 html 模块等,但我无法覆盖默认的 HubSpot 样式。

特殊性:如果 html 标签具有 class 或 id 属性,则 select 它会覆盖原生标签。

html.page {
  overflow-x: hidden;
}

要么,要么将样式内联到 html 页面(如果您可以访问它)。

请禁用包含样式表。

Primary CSS File : Disable

Include Domain Stylesheets : Disable

然后申请

html.no-js { overflow-x:hidden !important; }