PDA

View Full Version : How do I change the section tree font?


Stuart J Sykes
10-Feb-2007, 11:24 PM
I have sucessfully changed the colour of the section text to blue (see below) but can't seem to be able to change the font.
I want to change it to Arial Narrow
IF YOU NEED TO VIEW THE SITE ITS HERE:
http://www.wholesale-media.com/
HELP PLEASE

function YahooSections(ar)
{
var strIDs = '';
for (var i=1;i<=ar.length;i++)
{
if (ar[i].sURL != null)
{
strIDs += '<a href="' + ar[i].sURL + '"><span class="actxxsmall"><b><font color="blue">' + ar[i].sName + '</font></b></span></a><br>';

NormanRouxel
11-Feb-2007, 12:03 AM
Try changing

<font color="blue">

to

<font face="Arial Narrow" color="blue">

You have to do this in 2 places in the YahooSections code.

Stuart J Sykes
11-Feb-2007, 10:03 AM
Thanks Norman,
That works great.