粘滞按钮不工作可湿性粉剂。但是JS·菲德尔

时间:2017-03-23 作者:Matt Winer

我已将以下内容添加到我的WP站点。CSS位于“我的主题”的“高级”>“自定义CSS”部分。HTML出现在我的页脚中。php位于/body标记的正上方。

当我把整个东西放到jsfiddle中时,它就工作了。但在我的WP网站上,我只在页面左下角收到一条“联系我们”的短信。无格式、不浮动等。

当我检查页面源代码时,我看到所有CSS都已加载。我已经清理了所有的缓存,并试图伪装成windows。

HTML

<div id="ds-sticky-button"> <a href="/about-us/#contact">CONTACT US</a></div>
CSS

#ds-sticky-button {
position: fixed;
right: -50px !important; /*Positions the button to the right of the page*/
bottom: 0; /*Sets the distance of the button from the bottom of page*/
width: 200px !important; /*Sets dimensions of the button*/
height: 25px !important; /*Sets dimensions of the button*/
z-index:99999; /*Keeps the button on top*/
}
/*Styles the link text to make it look like a button - You can edit all these values to match your design*/
#ds-sticky-button a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0px;
  border: 1px solid #fff;
  color: #ffffff;
  font-size: 16px;
  background: #ff6600;
  padding: 5px 15px 5px 15px;
  text-decoration: none;
}
/*Styles the button on hover - You can edit all these values to match your design*/
#ds-sticky-button a:hover {
  background: #000000;
  text-decoration: none;
}

1 个回复
SO网友:Bob

这可能是自定义CSS部分中的语法错误。尝试将整个CSS代码(不仅仅是上面的代码片段)粘贴到一个代码编辑器中,该编辑器可以提示您可能出现的错误(如果有)
也可能是HTML语法错误-您可以检查页面的源代码是否缺少结束标记或其他可能导致页面无法正确显示的类似错误。

相关推荐

在带有PHP的子主题中包含style.css

在里面https://codex.wordpress.org/Child_Themes 这是包含样式的最佳实践。css在子主题中,必须将下面的代码放入函数中。php的子主题,但将“父样式”替换为可以在函数中找到的父主题的参数。父主题的php。我在我的主题文件中找不到它,那里也没有多少代码。使用@import包含父主题样式表的方法不适用于我,放入文件的css不会在任何浏览器的站点上显示自己。function my_theme_enqueue_styles() { $parent_s