css不适用于wordpress divi主题按钮模块设置,高级选项卡

时间:2017-09-20 03:08:15

标签: html css wordpress

CSS代码不适用于Divi Theme,按钮模块设置,高级选项卡。

我正在尝试将css代码添加到主页上按钮模块的高级选项卡中。 www.LumiWave.com,页面底部。该按钮标有“探索产品”

目前正在运行 WordPress 4.7.6 Divi 3.0.72 by Elegant Themes

以下是我正在做的事情: 从按钮模块,我点击设置。 从那里我单击高级选项卡。 在顶部,在“CSS Class:”字段中,我输入“greenbutton”作为类名。 然后我向下滚动到“主要元素:”部分并粘贴以下内容:

.greenbutton:link {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 253.188px;
  height: 51px;
  position: relative;
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font: normal normal bold 14px/25.5px “Roboto”, sans-serif;
  color: rgb(255, 255, 255);
  text-align: center;
  text-transform: uppercase;
  -o-text-overflow: clip;
  text-overflow: clip;
  letter-spacing: 0.3px;
  background: #78b657;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.greenbutton:hover {
  border: 1px solid #78b657;
  color: #78b657;
  background: rgba(124, 218, 36, 0.2);
}

它不应用样式表设置,而是继续从主按钮样式设置区域获取设置。

来自wordpress admin,如果我通过外观自定义Divi主题 - >自定义 - >按钮 - >按钮样式或按钮悬停样式,它仍然从中抓取其设置。

我知道如果我愿意的话,我可以从设计选项卡配置它,如果我不能让它工作,我可能最终必须这样做,但高级CSS选项卡应该可以工作,我想玩我只能从设计选项卡中获得一些高级设置。

设置都在css工具网站上按预期工作,我认为它与我输入或定义类名的方式有关,但是从我发现的所有引用看起来都是正确的。

1 个答案:

答案 0 :(得分:0)

我知道这很旧,但是对于任何对此问题有疑问的人: Modules custom css选项接受您编写的代码,并将其插入该模块的选择器中。 而不是像这样编写代码:

.element-class{
  color:'red';
  background-color: 'blue';
}

只需键入以下内容:

color:'red';
background-color: 'blue';

如果要使用选择器,则需要使用页面的自定义css选项或使用外部样式表。