Sitefinity ASP.NET CMS - Content Management System

Support Forum Thread


Reply
Allison, 7/3/2008 2:46:38 AM
I cannot find how/where to change the default text in the footer of the page (the copyright and date info). when i edit the template that section stays greyed out.

Reply
, 7/3/2008 3:08:30 AM
Hi Allison,

Follow the steps below:

1. Open your project with VS.NET.
2. Open Default.master page located in ~/App_Master folder
3. Make the required changes in the <div> element with ID "Footer":

<div id="Footer">2006-2007 &copy; MyOrganization. All rights reserved </div> 
 

Hope this helps.

Greetings,
Pepi
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center

Reply
Allison, 7/3/2008 3:19:56 AM
Thats great - thanks!

Reply
Allison, 7/3/2008 3:34:37 AM
Another question re formatting - I am having trouble with information that is presented in a table format in a generic content control. Since I cant seem to create a table within the text editor, I created it in Word and copied it into the editor. But I am finding that it keeps adding blank bullet points in my table and no matter how many times I delete them, they just magically appear again. Am I doing something wrong here? Help!

Reply
, 7/4/2008 4:13:37 AM
Hi Allison,

The InsertTable tool is disabled by default. nyway, you can easily turn it on. Open the EditorToolsFile.xml file located in the ~/Sitefinity/Admin/ControlTemplates/ folder and add the following:

<tools dockable="false"
    <tool name="InsertTable" /> 
</tools> 

Also, here is a reference to an useful online article that describes how to use the InsertTable tool.

Do let us know if you need any further assistance.

Greetings,
Pepi
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center

Reply
Allison, 7/6/2008 5:04:57 AM
Thats great - thank you!