Hi there,
It’s not possible to change the dropdown menu colors at this time. Typically, the dropdown menu color is expected to be consistent across the site. The top-level should change to contrast with the hero background.
Of course, you can use CSS to change the background colors.
For example:
.page-id-123 .main-navigation ul ul {
background-color: #000; /* background color */
}
.page-id-123 .main-navigation .main-nav ul ul li a {
color: #fff; /* text color */
}
You just need to change the 123
to the ID of the page you’re targeting.
Let me know if you need more info ๐