英文:
How I Can Change The Divi Mobile Menu Icon?
问题
如何更改Divi移动菜单图标?
我想要在Divi主题中更改我的移动菜单图标。
英文:
How can I change the Divi mobile menu icon?
I want my mobile menu icon to be changed in the Divi theme.
答案1
得分: 0
请将以下小片段复制并粘贴到Divi > 主题选项 > 自定义CSS框中。
/* 将Divi汉堡菜单更改为X */
.mobile_nav.opened .mobile_menu_bar:before {
content: 'd';
}
英文:
Please copy and paste the following little snippet into the Divi>Theme Options>Custom CSS box.
/*change Divi hamburger menu to X*/
.mobile_nav.opened .mobile_menu_bar:before {
content: '\4d';
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论