自定义添加图标在重力形式wordpress

问题描述 投票:0回答:1

我有一个可以添加多行的列表字段,默认情况下它有一个带加号的图像。我想使用以下代码更改它,但没有发生任何事情:

    .gfield_list_icons{     
       position: relative; 
    }

    .gfield_list_icons img:after {   
      font-family:'Arial';
      content: 'Add more';      
      padding: 10px 30px 10px 30px;     
      color: #FFF;
      position: absolute;
      background-color: #9D9D9D; 
   }
wordpress gravity-forms-plugin
1个回答
0
投票

尝试添加!important >>内容:'添加更多'!重要;或隐藏img“加号”并使用

.gfield_list_icons:after {   
  font-family:'Arial';
  content: 'Add more';      
  padding: 10px 30px 10px 30px;     
  color: #FFF;
  position: absolute;
  background-color: #9D9D9D; 

}

© www.soinside.com 2019 - 2024. All rights reserved.