Footer setup

Posted By mnicks Wed 8 Jan 2014
Add to Favorites1
Author Message
mnicks
 Posted Wed 8 Jan 2014
Supreme Being

Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)

Group: Awaiting Activation
Last Active: Tue 10 Jun 2014
Posts: 3, Visits: 19
I don't see any documentation on how to setup the Sections and Links in the footer.
imbox
 Posted Thu 16 Jan 2014
Supreme Being

Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)

Group: Forum Members
Last Active: Sun 13 Apr 2014
Posts: 16, Visits: 66
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.

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



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

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

--------------------------------------------------------------
mnicks
 Posted Wed 22 Jan 2014
Supreme Being

Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)Supreme Being - (1,940 reputation)

Group: Awaiting Activation
Last Active: Tue 10 Jun 2014
Posts: 3, Visits: 19
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.
Neil
 Posted Wed 22 Jan 2014
Supreme Being

Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)Supreme Being - (109,733 reputation)

Group: Forum Members
Last Active: Sat 3 Nov 2018
Posts: 192, Visits: 5,220
As imbox has said, you need to edit the template.master file to change the template
imbox Marked As Answer
 Posted Thu 23 Jan 2014
Supreme Being

Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)Supreme Being - (8,784 reputation)

Group: Forum Members
Last Active: Sun 13 Apr 2014
Posts: 16, Visits: 66
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.

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

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top