Footer setup


https://forum.kartris.com/Topic2734.aspx
Print Topic | Close Window

By mnicks - Wed 8 Jan 2014
I don't see any documentation on how to setup the Sections and Links in the footer.
By imbox - Thu 16 Jan 2014
The footer is part of a template file, generally template.master

Take a read of this documentation for understanding the template used, then you can edit the appropriate template.master file.

http://userguide.kartris.com/Default.aspx?headID=164

Typically, a default install, if a specific skin is not set, you can find the template.master file at 'Your Kartris Folder\kartris\skins\kartrisNonResponsive\template.master

--------------------------------------------------------------

** If you find this post useful, please rate it. Thanks.

--------------------------------------------------------------
By mnicks - Wed 22 Jan 2014
Thanks for your reply. I understand how to change the style of the footer. What I don't see is how to set or change the content of each link. In the out of the box configuration, the content of the footer is SECTION, Link, Link, Link and then SECTION, Link, Link, Link, etc.
By Neil - Wed 22 Jan 2014
As imbox has said, you need to edit the template.master file to change the template
By imbox - Thu 23 Jan 2014
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.

--------------------------------------------------------------