Whenever you click on a link, whether it be a hyperlink or a mapedit, there is a marquee (dotted line) around the item. I have recently been asked to remove the marquee from a web site. having nev er been asked to do this before.. I thought I would ask in here. Short of having the site redone in Flash, I don't even know if it is possible in HTML to do this. Thanks in advance.
You can make a dotted or dashed border around an element using CSS. Example: <div style="border:1px dashed black; width:100px; height: 100px;"></div> This is just a quick example using inline style. I would suggest using external style sheets whenever possible.