[ad_1]
Hello everyone,
I’m using WordPress with elementor. My primary menu color is white swan all the pages of my website. There’s a dark background with the menu options in a white font. On one page I would like to have the menu in a black font without changing any of the other pages, can anyone help me with this?
Thank you everyone
[ad_2]
Can you edit the menu on Elementor at all? From my LIMITED experience with it, I was only able to adjust menu settings through customization on WordPress.
Hello! If you know a little CSS: Some themes add unique page class names to the body tag. Eg <body class=”single post-484″> that you can target very specifically. So you could do in your customizer:
body.post-484 nav{
background: pink;
color: white;
}