如何更改 Woocommerce 评论图标
How Can I Change Woocommerce Review Icons
嘿,我需要更改 Woocommerce 评论系统中的图标。
模板 - Flatsome。
到图标图像。
我想更改:
`content: '\e005\e005\e005\e005\e005';`
类似于
`content: '\(img)\(img)\(img)\(img)\(img)';`
How can i change this - image
`.stars a {
font-size: 16px;
margin-right: -10px;
display: inline-block;
color: transparent !important;
overflow: hidden;
font-family: 'fl-icons';
}
.stars a.star-5:after {
content: '\e005\e005\e005\e005\e005';
}
`
有什么帮助吗?
您可以删除内容并使用背景图像。
.stars a.star-5:after {
content: '';
background-image: url();
display: block;
width: x;
height: x;
}
`
或创建您自己的网络字体,并覆盖字体系列。
我通过在 iconmoon 中创建图标解决了这个问题,
像这样
内容:'\e005\e005\e005\e005\e005';
*e005(新图标编号)
嘿,我需要更改 Woocommerce 评论系统中的图标。 模板 - Flatsome。 到图标图像。 我想更改:
`content: '\e005\e005\e005\e005\e005';`
类似于
`content: '\(img)\(img)\(img)\(img)\(img)';`
How can i change this - image
`.stars a {
font-size: 16px;
margin-right: -10px;
display: inline-block;
color: transparent !important;
overflow: hidden;
font-family: 'fl-icons';
}
.stars a.star-5:after {
content: '\e005\e005\e005\e005\e005';
}
`
有什么帮助吗?
您可以删除内容并使用背景图像。
.stars a.star-5:after {
content: '';
background-image: url();
display: block;
width: x;
height: x;
}
` 或创建您自己的网络字体,并覆盖字体系列。
我通过在 iconmoon 中创建图标解决了这个问题, 像这样 内容:'\e005\e005\e005\e005\e005'; *e005(新图标编号)