Announcement

Collapse
No announcement yet.

Links opening up in a new frame

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Links opening up in a new frame

    hi need som help again please! ive added a links page to our websit but i dont want the links to open up in the same frame as our website. is there any way to solve this problem?!

    all comments appreciated!

    Thanks
    AMx

    #2
    I presume you mean you want the link to open in another browser instance. If so then do this:
    <a href="linkpage.html" target="_blank">link text</a>

    Duncan R

    Comment


      #3
      sorry for being a bit dim but where shall i put that?

      anne-marie

      Comment


        #4
        If your links page is your own (non Actinic generated) page then all you need to do is change the link from:
        <a href="linkpage.html">link text</a>
        to
        <a href="linkpage.html" target="_blank">link text</a>

        ie add in the ' target_="blank"' part.

        If you are using fragments to make a brochure page for your links then you can add this code into the fragment:
        !!<<a href="linkpage.html" target="_blank">link text</a>>!!

        Duncan R

        Comment

        Working...
        X