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

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

Bởi Annali Nicolaou -
Số lượng các câu trả lời: 1

Hi,

I run Moodle 2.8 | BCU theme | Course format: Grid.

In the top menu bar of my page I have a help file linked to a separate website located on my LMS server.

I need the link to open in a new window: _blank

Attached is a screenshot where the site is linked under:

Site Administration > Appearance > Themes > BCU > Help link

How do I code this to open in a new window?

ANY help with this issue will be greatly appreciated,

Kind Regards,

Annali Nicolaou

(Edited by Gareth J Barnard - Nothing to do with the Grid format so title adjusted as to not be misleading for others original submission - Wednesday, 17 August 2016, 12:54 PM)

(Edited by Mary Evans - Made it more legible - original submission Wednesday, 17 August 2016, 6:02 PM)

File đính kém 4.jpg
Trung bình điểm đánh giá: -
Để phản hồi tới Annali Nicolaou

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

Bởi Mary Evans -

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