How to add Background Color Highlight in Text Link?
You can add Background Color Highlight in the Text Link by using the CSS code A:hover { color: some color; background-color: some color; } You have to add the CSS code to your script in the Head section <style type=”text/css”> <!– A:hover { color:#000; background-color:#F00; } –> </style> By adding the CSS code you can add Background Color Highlight in Text Link. Say for ...