I would like put the links in the footer (not the bottom of the page) – what do I go about this?
Answer from Development (not found in forum so I'm adding):
In a default site
- go to the design tab
- navigate to the bottom in the page preview
- you can see the footer
- Click on some thing like "Click here to email us"
- it will take you to line 129 in the code where you can see the following
<a href="<actinic:variable name="SendMailPageLink" />">Click here to email us</a>
You can add another href tag like that,
for ex:
<a href="http://www.google.co.in/">Take me to Google</a>
Answer from Development (not found in forum so I'm adding):
In a default site
- go to the design tab
- navigate to the bottom in the page preview
- you can see the footer
- Click on some thing like "Click here to email us"
- it will take you to line 129 in the code where you can see the following
<a href="<actinic:variable name="SendMailPageLink" />">Click here to email us</a>
You can add another href tag like that,
for ex:
<a href="http://www.google.co.in/">Take me to Google</a>
Comment