How-to and Troubleshooting
3
Posts
2
Users
0
Reactions
1,003
Views
Dec 23, 2019 4:56 pm
How to style the popup that appears once you type a few words for the tags? We are using a "dark theme" for the rest of the website, but that popup has white background and white text making it invisible. How can I make the text black?
2 Replies
Dec 24, 2019 1:57 pm
You should use the following selector to change the style:
ul.wpf_ac_results
For example, if you'd like to change the background-color you should use this CSS code:Β
ul.wpf_ac_resultsΒ {
background-color: #b18a8a;
}
Dec 24, 2019 3:02 pm
Thank you!