Skip to content

Instantly share code, notes, and snippets.

@MyListingClub
Last active January 26, 2021 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MyListingClub/568c15b2d71aaea6b65cbd6830f73ccd to your computer and use it in GitHub Desktop.
Save MyListingClub/568c15b2d71aaea6b65cbd6830f73ccd to your computer and use it in GitHub Desktop.
CSS | MyListing Dashboard Menu Bar Design
//// INSTRUCTIONS:
//// Copy and paste any of the code snippets below into Theme Tools > Theme Options > Custom Code > CSS.
---------------------------CODE SNIPPET IS BELOW THIS LINE---------------------------------------------------------
/* DASHBOARD MENU BAR */
.woocommerce-MyAccount-navigation ul li.current-menu-item a i {
color: #65bdaa !important;
}
.woocommerce-MyAccount-navigation ul li a {
color: #ffffffcf;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 400;
transition: .3s ease;
}
.woocommerce-MyAccount-navigation ul li a:hover {
color: #fff;
font-weight: 600;
transition: .2s;
}
.woocommerce-MyAccount-navigation ul li a:hover i {
color: #65bdaa !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation>ul>li>a>i {
color: #ffffff66;
}
/* HIDE THE DEFAULT MYLISTING HEADER TO BRING THE NEW MENU BAR ALL WAY TO THE TOP OF THE PAGE */
.c27-main-header {
display: none;
}
.c27-top-content-margin {
height: 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment