I finally found what I was doing wrong - I was missing the right version of style_ice.css because I hadn't upgraded to 1.1.0.15
The code I needed in this was:
/* forum index */
.forumlink, .forumlink-new {
font-size: 12px;
font-weight: bold;
line-height: 1.3em;
color: #113355;
and just changed the colour. This takes care of most of the title text in boxes such as 'Statistics' and 'Top Posters'. However, boxes which have
a title that is also a link need changing too. I found the code for that:
a.forumlink, a.forumlink:visited {color: #113355; text-decoration: none; }
but changing this means that the colour of other links get changed too, and the the colour of the link is now too similar to the background colour, and makes the text hard to read.
Can anyone suggest how to change the colour of the text in a header link (for an example, click on Home here in IP and scroll down to the bottom. See the text/links in 'Statistics' / 'Birthdays' / 'Shoutbox),
without changing the colour of the links in forum titles?