Add an external link directly under a dropdown menu?

I'd like to make a link to another website directly under a dropdown-menu. How do I do that?

Hey,

I’ve found a way of adding external links to the main header:

  1. Add a new page to your dropdown and on the page settings change the name to the following:

<a href="[PUT YOUR LINK HERE]" target="_blank"> TEXT HERE </a>

  1. This will link to an external page as you’d like but leaves a block with the link to the Knack page intact. As below:

To hide this extra block just add the following CSS to make the extra box invisible:

li a[href="INSERT KNACK LINK PAGE HERE"] {
    padding: 0px !important;
}

where you’ll need to add the href of the knack page. e.g. my page is called Support and so the href is “#support”.