0

我正在使用 divi builder 的模块构建联系表单。Divi 的联系表单已经带有一个按钮,我需要通过在按钮标签中添加 html span 标签来自定义它。

.link--button {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 22.6px;
  background-color: transparent;
  padding: 16px 32px 16px 40px;
  cursor: pointer;
  border: 4px solid #000000;
  color: #000000;
}

.link--button:hover .arrow {
  transition: all 0.4s ease;
  width: 35px;
  margin-right: 5px;
}

.arrow {
  height: 2px;
  width: 25px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 15px;
  margin-bottom: 4px;
  background: black;
}

arrow:before {
  right: -2px;
  bottom: -3px;
  transform: rotate(-45deg);
  background: black;
}

.arrow:after {
  right: -2px;
  top: -3px;
  transform: rotate(45deg);
  background: black;
}

.arrow:before,
.arrow:after {
  content: "";
  background: black;
  position: absolute;
  height: 2px;
  width: 10px;
  border-radius: 30%;
}
<button class="link--button btn--black">
  <span class="arrow arrow--black"></span>Submit
 </button>

如何修改 divi 的 html 以插入箭头?

4

1 回答 1

0

我找到了答案。在 Divi Themes 集成选项卡中,使用 jquery 在 HTML 之前添加:

jQuery(document).ready(function(){
    jQuery(".my-form .et_pb_button").prepend('<span class="arrow arrow--black"></span>');
});

这会在表单的按钮内添加 HTML 标记

于 2021-06-18T19:15:25.387 回答