Change Text Color Dropdown Links Oct 22, 2007 18:49:14 GMT -5 Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Chad on Oct 22, 2007 18:49:14 GMT -5 The dropdown in the post area that allows you to change the text color, this allows you to change the default colors.PreviewSource: OpenGlobal Footer<script type="text/javascript">/*By Chad*/var colors = [["Orange","d6d643"],["Green","57a834"],["White","ffffff"]/*No comma on this line!*/];if(document.postForm){var colorList = document.postForm.color;while(colorList.options.length>1){colorList.options[1]=null;}for(a=0;a<colors.length;a++){var option = document.createElement('option');colorList.appendChild(option);option.value = colors[1];option.innerHTML = colors[0];}}</script>Edit those in white as much as you want, just add a new line with the same set up each time. No #'s needed for the Hexes. The color name you set, is the name you will see in the color box.