Ideally you would open the template.master using Visual Studio as it makes it much easier to edit. Alternatively open template.master using notepad.exe in your windows directory (provided you are using windows, or any other text editor will do).
Look for the html tag <div id="footer">
Within that section you will find several <h2>Section</h2> which are the headings of each column, change that word within <h2> and </h2> to modify the heading of the column in the footer.
Below each column header you will find a series of hyperlinks, <asp:HyperLink.......... you can modify the heading and the navigation url for each.
By default each hyperlink is:
<li><asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/Default.aspx">Link</asp:HyperLink></li>
you can modify this as e.g.:
<li><asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="www.mydomainurl.com">My Link</asp:HyperLink></li>
Save the file and open the web site again and you will see the changes applied. However, you really need to understand the basics and foundation of html programming to make these changes. Alternatively contact the administrators of Kartris to help you set up a fully operational site (for a fee I imagine, Paul/Neil please confirm).
--------------------------------------------------------------
** If you find this post useful, please rate it. Thanks.
--------------------------------------------------------------
--------------------------------------------------------------
** If you find this post useful, please rate it. Thanks.
--------------------------------------------------------------