Hi Manny Cross,
you can create other color style by doing the following steps. Example: I want to add the orange style in the template.
+ edit the templateDetails.xml file in "your_site/templates/smart_news17", finding:
<field name="sitestyle" type="list" default="blue" label="SITE_STYLE_LABEL" description="SITE_STYLE_DESC">
<option value="black">Black</option>
<option value="blue">Blue</option>
</field>
change to
<field name="sitestyle" type="list" default="blue" label="SITE_STYLE_LABEL" description="SITE_STYLE_DESC">
<option value="black">Black</option>
<option value="blue">Blue</option>
<option value="orange">Orange</option>
</field>
+ edit the color.xml file in "your_site/templates/smart_news17/css/color"
<?xml version="1.0" encoding="iso-8859-1"?>
<sitestyle>
<blue>
<filestyle>blue</filestyle>
</blue>
<black>
<filestyle>black</filestyle>
</black>
</sitestyle>
change to
<?xml version="1.0" encoding="iso-8859-1"?>
<sitestyle>
<blue>
<filestyle>blue</filestyle>
</blue>
<black>
<filestyle>black</filestyle>
</black>
<orange>
<filestyle>orange</filestyle>
</orange>
</sitestyle>
+ create the new css file in "your_site/templates/smart_news17/css/color". Example: orange.css
+ add code in the orange.css file according to your wish
Note: if you want to create the new css file quickly, you can copy the exist css file and rename it, change code in it. Example: copy the black.css file and rename it as orange.css
Thanks