What is the code for opening a link in the same window rather than a new one? How would I change this link? <a href="http://brianhillanddeepower.com"> Brian Hill and Dee Power</a> Dee
You need to use javascript, but it also depends on the users browser settings, I have a setting where all links open in the same window. http://snippets.dzone.com/posts/show/2915
if you want to open in a new windows the code is: <a target="_blank" href="http://brianhillanddeepower.com">Brian Hill and Dee Power</a>
Your code should open links in the same window and not a new one. It open in a new one only when you add Target="_Blank" after the URL. Again it all depends on the site's settings. If the site is set to open all links in a new window, then your earlier code will open it in a new window.