Re: Newsletter email template with TOC hyperlinks

Anonymous
Not applicable

Newsletter email template with TOC hyperlinks

Has anyone created a newsletter template in a 2-column layout that includes a table of contents with hyperlinks to the various sections?  I searched the Community but couldn't find quite what I need; and I'm not knowledgeable enough with HTML to create my own template from some of the standard 2-column layouts in Marketo.
Tags (1)
2 REPLIES 2
Anonymous
Not applicable

Re: Newsletter email template with TOC hyperlinks

Hey Megann,

You just need to add a few tags to your HTML to build out some anchor links. In our newsletter, we have a table of contents at the top with a list of links, each one has an anchor link like this:

<a href="#item1">Item 1 description</a>

Then, in the section you want to reference, include this:

<a name="item1"></a>

So on and so forth for other sections you wish to link up ("item2", etc.). Hopefully that does the trick!
Anonymous
Not applicable

Re: Newsletter email template with TOC hyperlinks

Thank you, that helps!