BCU theme - How can I get the Help file to open in new window?

Re: How can I get the Help file to open in new window?

by Mary Evans -
Number of replies: 0
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

You could try something like this:

Help|index.html" target="_blank

Which is to add

 " target="_blank

after the link URL. However It is very important that you write it exactly as it is written in my example;

What you will be doing is adding in the target part of the html for that link.

This is what the normal link HTML looks like...

<a href="index.html">Help</a>

So all you will be doing is adding this section (see highlighted text):

<a href="index.html" target="_blank">Help</a>

So all you would write in the box is this:

Help|index.html" target="_blank

Please let me know if it works or not?

Hope that helps?

Cheers

Mary