So this is the entire code. I put the above code where exactly? Thanks.
/*** CUSTOM CHARITY MENU BEGIN ***/
/* Override Theme List Decoration */
ul li:before,
ul ul li:before {
content: none;
}
/* Clearfix, No Bullets */
ul#charity-menu,
ul.charity-project-menu {
clear: both;
margin: 0 auto !important;
list-style-type: none !important;
}
/* Charity Menu (Top-Level) */
ul#charity-menu {
position: relative;
}
/* Project Menu (2nd Level) */
ul.charity-project-menu {
position: absolute;
left: 0;
right: 0;
padding: 0;
opacity: 0;
display: none;
visibility: hidden;
}
/* List Items */
ul#charity-menu > li {
padding: 6px;
}
ul.charity-project-menu > li {
padding: 2px;
max-width: 45%;
}
ul#charity-menu > li,
ul.charity-project-menu > li {
float: center;
display: inline-block;
}
/* Charity Menu Text */
ul#charity-menu > li a {
color: #444444;
font-size: .9em;
font-family: "Trebuchet MS", Helvetica, sans-serif;
transition: .4s all;
text-decoration: none;
}
/* Text Below Image */
.charity-project-caption {
color: #999999;
font-size: .75em;
font-family: Verdana, Geneva, sans-serif;
}
/* Underline on Charity Hover */
ul#charity-menu > li.current-charity > a {
border-bottom: 2px solid #ff0000;
}
/* Show Projects on Charity Hover */
ul#charity-menu > li.current-charity > ul.charity-project-menu {
opacity: 1;
display: block;
visibility: visible;
}
/*** CUSTOM CHARITY MENU END ***/