Treeview style forecolor nodes
Web Development
2
Posts
2
Posters
0
Views
1
Watching
-
I'm trying to set the foreground color for all treeview nodes in css but cannot get it to work. I'm using the following: { color:black } How can I get this to work?
I hope you are referencing the objects id, class or tag... some examples p{ color:#000; } .myclass{ color:#000; } #myid{ color:#000; } You can also apply the css to all elements like *{ color:#000; } The #000 is shorthand for #000000 and is black. BTW - You are placing the style tags around your css or referencing it in a link tag? All the Best!