如何更改Woocommerce购物车图标?我正在使用主题OceanWp
站点:https://galcohen.club/非常感谢你的帮助!
#1
你可以从wordpress主题定制器中更改图标。利用这个
- 进入主题子菜单, 然后单击”自定义”
- 前往woocommerce
- 你可以在此处看到选项。
#2
将其添加到对我有用的其他CSS中, 从这里获取你喜欢的图标代码-https://fontawesome.com/cheatsheet并将其粘贴, 如下所示…
.site-header-cart .cart-contents::after {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
font-family: 'Font Awesome 5 Free';
font-weight: 900;
line-height: inherit;
vertical-align: baseline;
content: "\f217"; /*paste it here*/
height: 1em;
float: right;
line-height: 1.618;
}
评论前必须登录!
注册