On Sunday, April 8, 2007 10:52 am, malebeast@xxxxxxxxx wrote: > > and change "whatever" to a valid color designator recognized by > > css. > > > > That will style all elements that do not have a color set for them > > to the color you choose. > > It's redefines all text colors, specified or not! > It is not exactly what I need! Then what you can do is target specific tags, such as p, li, h1, or whatever. Just replace * with a comma-separated list of tags you want one color to apply to. And create separate rules altogether if you want different colors to apply to different tags. /* for black paragraph and list items*/ p, li { color: #000000 ; } /* for red header tags */ h* { color: red; } You can specify anything you want, not just colors. You just have to have some information about cascading style sheets to know what is possible. Try having a look at http://www.w3.org/Style/CSS/. -- 73, AC7ZZ http://counter.li.org/ Linux User #246504 ___________________________________________________ This message is from the kde mailing list. Account management: https://mail.kde.org/mailman/listinfo/kde. Archives: http://lists.kde.org/. More info: http://www.kde.org/faq.html.