Question:

How do I make my website links open in the same window/tab?

by Guest64583  |  earlier

0 LIKES UnLike

I'm fairly new to website programming and I'm trying to use dreamweaver to make my website for a small computer repair service. When I click on my navigation links it opens them up in a new tab. What do I have to do to make it open in the same tab? To see what I'm talking about go to http://roarservice.com

 Tags:

   Report

4 ANSWERS


  1. Since you are using Dreamweaver, open your html file and click on the image that has your links. On the Properties windows you will see a Target box, just delete the entry '_target' or simply choose other value like '_self' as your Target. Save your file and publish/upload again.


  2. Instead of:

        <a href="contactme.html" target="_blank">

            <img alt="Contact Me" border="0" src="http://i331.photobucket.com/albums/...

    Try:

        <a href="contactme.html" target="_self">

            <img alt="Contact Me" border="0" src="http://i331.photobucket.com/albums/...

    Or:

        <a href="contactme.html">

            <img alt="Contact Me" border="0" src="http://i331.photobucket.com/albums/...

  3. Your code: <a href="contactme.html" target="_blank">

    Should read: <a href="contactme.html">

  4. It's opening on the same tab for me. Go to TOOLS> INTERNET OPTIONS> TABS> SETTINGS you'll find it there :) hope that helps!!  

Question Stats

Latest activity: earlier.
This question has 4 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.