Forum Moderators: open
If you want to change the color of all the elements you need to loop through the collection:
var titles = document.getElementById('gallery').getElementsByTagName("title");
for(var k=0;k<titles.length;k++)
titles[k].style.color = '#ffffff';
the javascript