Glad to see that things look in hand.
BTW, you can have an id for a link, but you can't put two "a" tags into it:
HTML Code:
<a id="womensLink"a href="http://www.imagocollections.com.au/index.php?main_page=index&cPath=33"></a>
It would be like this:
HTML Code:
<a id="womensLink" href="http://www.imagocollections.com.au/index.php?main_page=index&cPath=33">content</a>
And yes, you would want some content in the link. You can use pixel_trans.gif which is a one-pixel transparent image, used for this kind of placeholder elsewhere in Zen Cart. So content would be <img src="http://www.imagocollections.com.au/images/pixel_trans.gif">
You wouldn't address a link named #womensLink as
#womensLink a {
but as
a#womensLink {
#womensLink a {
means a link inside an element named #womensLink.