is it possible to wrap a <a href...> tag around a <div> to make the whole thing a link? Any help appreciated.
Is it possible? - probably yes. Is it advisable to do so? - probably no. Reason? - One can beleive without a reasonable doubt that since this is not valid html (or xhtml) structure, it is possible that search robots will read the <a> tag, think "Oh - here is a link, lets look for the anchor text" BUT - when it runs in to an opening div tag it may terminate the thought process. There is hope - if what you are doing is similar to wrapping the <a> tag around an <img /> tag, then it may be fine. ....What do you plan to have inside the <div> tag, and before the closing </a> tag?
No! An a element may contain only elements of type %inline. The div element is block. Instead of asking how to do what you've decided is the solution, describe your problem, along with the code you've developed so far. cheers, gary