It's not currently specified in the style sheet but you can add this easily. The best thing to do is probably to give the P tag that they are enclosed within an ID, and then add a style for A tags within that P in the css. To do this, in index.php, look for this code on line 12:
Hi Peter,
It's not currently specified in the style sheet but you can add this easily. The best thing to do is probably to give the P tag that they are enclosed within an ID, and then add a style for A tags within that P in the css. To do this, in index.php, look for this code on line 12:
print "<p>";
...and replace this with:
print "<p id='hplinks'>";
And then in default.css, add something like this:
#hplinks a {
color: red;
}
Cheers,
David.