For those that have been trying to change the poll font color:
Edit the sc_pollresult template (in the Sidebar Column Templates group)
Original template:
Code:
<tr>
<td class="poll" colspan="2">
<if condition="$option['uservote']">
<em>$option[question]</em>
<else />
$option[question]
</if>
<if condition="$show['pollvoters']"><div class="alt2 smallfont" style="border:inset 1px; margin-top:$stylevar[cellpadding]px; padding:$stylevar[cellpadding]px">$names</div></if>
</td>
</tr>
<tr>
<td class="nowrap" width="80%">
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="nowrap" align="left">
<img src="$stylevar[imgdir_poll]/bar$option[graphicnumber]-$option[open].gif" alt="" width="3" height="10" /><img src="$stylevar[imgdir_poll]/bar$option[graphicnumber].gif" alt="" width="$option[percent]" height="10" /><img src="$stylevar[imgdir_poll]/bar$option[graphicnumber]-$option[close].gif" alt="" width="3" height="10" /><img src="$vboptions[cleargifurl]" alt="" width="$option[remainder]" height="10" /></td>
<td class="poll" align="right">$option[percent]%</td>
</tr></table>
</td>
</tr>
change it to:
Code:
<tr>
<td class="smallfont" colspan="2">
<if condition="$option['uservote']">
<em>$option[question]</em>
<else />
$option[question]
</if>
<if condition="$show['pollvoters']"><div class="alt2 smallfont" style="border:inset 1px; margin-top:$stylevar[cellpadding]px; padding:$stylevar[cellpadding]px">$names</div></if>
</td>
</tr>
<tr>
<td class="nowrap" width="80%">
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="nowrap" align="left">
<img src="$stylevar[imgdir_poll]/bar$option[graphicnumber]-$option[open].gif" alt="" width="3" height="10" /><img src="$stylevar[imgdir_poll]/bar$option[graphicnumber].gif" alt="" width="$option[percent]" height="10" /><img src="$stylevar[imgdir_poll]/bar$option[graphicnumber]-$option[close].gif" alt="" width="3" height="10" /><img src="$vboptions[cleargifurl]" alt="" width="$option[remainder]" height="10" /></td>
<td class="smallfont" align="right">$option[percent]%</td>
</tr></table>
</td>
</tr>
That will change the poll text to your style's smallfont setting.