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,948 reputation)Supreme Being - (1,948 reputation)Supreme Being - (1,948 reputation)Supreme Being - (1,948 reputation)Supreme Being - (1,948 reputation)Supreme Being - (1,948 reputation)Supreme Being - (1,948 reputation)Supreme Being - (1,948 reputation)Supreme Being - (1,948 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 Marked As Answer
 Posted Thu 23 Jan 2014
Supreme Being

Supreme Being - (8,840 reputation)Supreme Being - (8,840 reputation)Supreme Being - (8,840 reputation)Supreme Being - (8,840 reputation)Supreme Being - (8,840 reputation)Supreme Being - (8,840 reputation)Supreme Being - (8,840 reputation)Supreme Being - (8,840 reputation)Supreme Being - (8,840 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