Currently, in SoCast Engage, the ability to change the background color of individual menu bar elements is only available for the "Listen Live" button by default. However, you can rearrange which menu items appear in the top navigation and use custom CSS to highlight a specific menu item.
To rearrange menu items:
To highlight a menu item using custom CSS:
.nav-lower li:nth-child(6) {
background-color: #EF1B8C;
color: white !important;
}
.nav-lower li:nth-child(6):hover {
background-color: black !important;
color: white !important;
}
.nav-lower li:nth-child(6) * {
color: white !important;
}
Note: Any CSS added here will apply site-wide, so review changes carefully. The exact menu item targeted by li:nth-child(6)
depends on your menu order. Adjust the selector as needed for your specific menu structure.
If you need further assistance or want to highlight a different menu item, please contact SoCast Support.