Hi there,
Is it possible in Marketo to add link in email that when clicked would drive to a specific section on a landing page, to be precise at the bottom?
Solved! Go to Solution.
This is usually accomplished by adding a hash and the id="" value of the section you'd like to link to into the URL.
For example, if you wanted to drive to https://www.example.com and there was a section on the page with an id value of "mySection" you wanted to jump to, you'd append "#mySection" to the URL above: https://www.example.com#mySection
The HTML for the section would need to look something like this:
<div id="mySection">
...
</div>
This is usually accomplished by adding a hash and the id="" value of the section you'd like to link to into the URL.
For example, if you wanted to drive to https://www.example.com and there was a section on the page with an id value of "mySection" you wanted to jump to, you'd append "#mySection" to the URL above: https://www.example.com#mySection
The HTML for the section would need to look something like this:
<div id="mySection">
...
</div>