How do I edit the Section Text Links in the Smart Theme?
I've looked at the layout code which has a document.write command feeding a list of Sections into it. The formatting seems to be wrapped around it for the actual table, but I am not sure where it is for the links themselves.
I want to alter the size of the font, as I have successfully done for the Custom Sidebars.
---------------
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td valign="top" width="8%" bgcolor="<actinic:variable name="Palette2" />"><img src="theme_tab2_left.gif" /></td>
<td bgcolor="<actinic:variable name="Palette2" />" width="84%" height="20"><span class="boxheading">Store Sections</span></td>
<td valign="top" width="8%" align="right" bgcolor="<actinic:variable name="Palette2" />"><img src="theme_tab2_right.gif" /></td>
</tr>
<tr>
<td colspan="3" class="thinborder2" style="padding: 3px;">
<script language="javascript" type="text/javascript">
document.write(YahooSections(section_tree))
</script>'
</td>
</tr>
</table>
I thought I could wrap a <span> tag around the <script> tag but that had no effect and messing around within it seems to cause problems.
Is this a case of direct HTML trickery or using an external <span> further out from the Javascript?
I've looked at the layout code which has a document.write command feeding a list of Sections into it. The formatting seems to be wrapped around it for the actual table, but I am not sure where it is for the links themselves.
I want to alter the size of the font, as I have successfully done for the Custom Sidebars.
---------------
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td valign="top" width="8%" bgcolor="<actinic:variable name="Palette2" />"><img src="theme_tab2_left.gif" /></td>
<td bgcolor="<actinic:variable name="Palette2" />" width="84%" height="20"><span class="boxheading">Store Sections</span></td>
<td valign="top" width="8%" align="right" bgcolor="<actinic:variable name="Palette2" />"><img src="theme_tab2_right.gif" /></td>
</tr>
<tr>
<td colspan="3" class="thinborder2" style="padding: 3px;">
<script language="javascript" type="text/javascript">
document.write(YahooSections(section_tree))
</script>'
</td>
</tr>
</table>
I thought I could wrap a <span> tag around the <script> tag but that had no effect and messing around within it seems to cause problems.
Is this a case of direct HTML trickery or using an external <span> further out from the Javascript?
Comment