Well im coding my personal portfolio and for some stupid reason i forgot how to change the hyperlink color. Its default blue and purple but i want it another color. So can anyone remind me how to change this ? Thank you
At the top in the style header put. Code: a:visited { color: #CCCCCC; } a:hover { color: #3E6C79; } a:active { color: #CCCCCC; } The visited color will be the color after clicked. The hover is the color while having the mouse over top and Active is the current one selected. hope this helps...