In admin_config_colors.asp, look for this code(lines 107 - 115): <select name="strHeaderFontSize">
<option<% if (lcase(strHeaderFontSize)="1") then Response.Write(" selected") %> value="1">1 (8 pt)</option>
<option<% if (lcase(strHeaderFontSize)="2") then Response.Write(" selected") %> value="2">2 (10 pt)</option>
<option<% if (lcase(strHeaderFontSize)="3") then Response.Write(" selected") %> value="3">3 (12 pt)</option>
<option<% if (lcase(strHeaderFontSize)="4") then Response.Write(" selected") %> value="4">4 (14 pt)</option>
<option<% if (lcase(strHeaderFontSize)="5") then Response.Write(" selected") %> value="5">5 (18 pt)</option>
<option<% if (lcase(strHeaderFontSize)="6") then Response.Write(" selected") %> value="6">6 (24 pt)</option>
<option<% if (lcase(strHeaderFontSize)="6") then Response.Write(" selected") %> value="7">7 (36 pt)</option>
</select>
Change the number in red, to a 7. And also for this(lines 122 - 130): <select name="strFooterFontSize">
<option<% if (lcase(strFooterFontSize)="1") then Response.Write(" selected") %> value="1">1 (8 pt)</option>
<option<% if (lcase(strFooterFontSize)="2") then Response.Write(" selected") %> value="2">2 (10 pt)</option>
<option<% if (lcase(strFooterFontSize)="3") then Response.Write(" selected") %> value="3">3 (12 pt)</option>
<option<% if (lcase(strFooterFontSize)="4") then Response.Write(" selected") %> value="4">4 (14 pt)</option>
<option<% if (lcase(strFooterFontSize)="5") then Response.Write(" selected") %> value="5">5 (18 pt)</option>
<option<% if (lcase(strFooterFontSize)="6") then Response.Write(" selected") %> value="6">6 (24 pt)</option>
<option<% if (lcase(strFooterFontSize)="6") then Response.Write(" selected") %> value="7">7 (36 pt)</option>
</select>
Change the number in red, to a 7.
- David