Skip to content

Instantly share code, notes, and snippets.

View snetcher's full-sized avatar
💭
I may be slow to respond.

Constantine snetcher

💭
I may be slow to respond.
View GitHub Profile
@snetcher
snetcher / divi_styles.css
Last active August 11, 2024 17:06
[WP] [Divi] CSS tricks
// ---
// Source - https://help.elegantthemes.com/en/articles/8353732-changing-the-menu-module-hamburger-icon-to-an-x-when-open
// ---
// Changing the Menu Module Hamburger Icon to an "X" When Open
.mobile_nav.opened .mobile_menu_bar:before {
content: "\4d";
}
// ---