Notifications
Clear all

wpForo 1.x.x [Solved] Tag styling

3 Posts
2 Users
0 Likes
841 Views
Posts: 530
Topic starter
(@central4allgmail-com)
Prominent Member
Joined: 6 years ago

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
Sofy
Posts: 4308
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi @central4allgmail-com,

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;
}
Posts: 530
Topic starter
(@central4allgmail-com)
Prominent Member
Joined: 6 years ago

Thank you!