How do I change the visited link color on the following element id? I tried below and it did not work
CSS
HTMLCode:a.whitelink.visited { color: #FFFFFF; } #searchCartBar { width:730px; margin:auto; padding-top:.5em; font-size: 8px; font-family: arial; color: #FFFFFF; }
Code:<div align="right" id="searchCartBar"> <form name="quick_find" action="http://www.tbaquatics.com/shop/search/results.html" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><input type="text" name="keyword" size="18" maxlength="100" style="width: 120px" value="" onfocus="if (this.value == '') this.value = '';" onblur="if (this.value == '') this.value = 'quick find...';" /><input type="submit" value="search" style="width: 50px" /> <a class="whitelink" href="http://www.tbaquatics.com/shop/search/">Advanced Search</a></form> </div>



