I need a link on our site to not inherit the CSS rules of the page - at the moment it shows with a border and underline etc which is not desirable for this particular link.
I seem to vaguely remember being able to change the href to as <a href="javascript:;"></a>
which effectively overrides the CSS but I don't remember how to make the link go to the required page. Can you fill me in? Thanks!
href="javascript: document.location.href='http://www....';"
But you should follow @bfavaretto's answer instead.