Browse: Home / Snippets /

Replace avatar in Focus Mode menu with hamburger icon

Contents


Snippet #

Important: All snippets are provided as-is without support or guarantees. These snippets are provided as guidelines for advanced users looking to customize LearnDash. For any additional help or support with these snippets, we recommend reaching out to a LearnDash Expert.

/* hide the avatar menu */
.ld-user-menu .ld-profile-avatar {
	display: none;
}

/* 
*  Utilize the default dashicons loaded with WordPress to replace it with a hamburger icon
*  Make sure to change the color of the icon to match your theme
*/
.ld-user-menu::before {
	font-family: "Dashicons";
	content: "\f349";
	margin-left: 15px;
	color: red !important;
}