Quote:
|
Originally Posted by marksperl
Now how do I assign different colors to Sub Category & Article title.
|
Learn how a CSS id works and add an appropriate id (if needed) so you can select the title or subcategory you are trying to control.
If you cannot find an easy way to select some text, you can use <span> or <div>. <span> is for inline markup and <div> is for blocks of markup.
ie: <span id="subcategory">Some Subcategory Name</span>
Now you can select the subcategory with #subcategory {}.
HTH,