Themes and Templates Manual FOR ADVANCED USERS

Size: px
Start display at page:

Download "Themes and Templates Manual FOR ADVANCED USERS"

Transcription

1 Manual FOR ADVANCED USERS

2 Table of Contents Introduction... 3 Key Information... 3 Portal Structure... 4 Portal Structure: Template... 5 Overview ) Editing a Portal Template ) Adding a Portal Template ) Template Layout ) Custom Elements ) Style Sheets ) Saving the Template... 9 Portal Structure: Theme Overview ) Editing a Portal Theme ) Adding a Portal Theme ) Theme Elements ) Choosing a Template for the Theme ) Updating a Theme ) Assigning a Theme to a Page ) Assigning a Theme to a Site ) Theme Inheritance Explained Portal Structure: Layout Overview Choosing a Layout Site Render Templates Overview ) Editing a Site Render Template ) Adding a Site Render Template ) Applying DataDisplay Templates ) Applying Navigation Templates P a g e

3 Introduction Themes and templates give you total control over the look and feel of your site. Everything from the color of the background to the font color used for links can be controlled via some aspect of your theme or template. While creating and editing themes and templates gives you increased control of your site, it also requires knowledge of HTML, XML and CSS. As such, this manual is intended for advanced users only. If you are not comfortable working with HTML, XML, or CSS, it is recommended that you contact your account representative for assistance modifying the look and feel of your site. Key Information Before working with themes and templates on the site, the user must first log into the site using their Username and Password. If you have not yet registered with the site you can request access by clicking on the Signup button. This will prompt you to create a profile which is automatically routed for approval to an administrator. Note: If you do not see the Signup link your site s administrators may have removed it. If you have already registered but have forgotten your password, simply click on Forgot Password to retrieve it. 3 P a g e

4 Portal Structure Any CMS page is made up of four components: a template, a theme, a layout, and one or more portlets. The template controls the header and footer as well as the style sheet. On top of that is the theme which controls elements such as a breadcrumb, page title and pageset. On top of that is the layout for the specific page you are viewing. The layout controls how many regions you have on the page and their dimensions. Finally there are the portlets. These are added to the various regions you have created in the layout and can be anything from content to calendars to news, etc. 4 P a g e

5 Portal Structure: Template Overview The portal template controls the header and footer of a page. Within the header and footer you may place things like a logo or an address. You may also include various custom elements such as PublishedLinkMenu, GatewayLink, and others. 5 P a g e

6 1) Editing a Portal Template To edit the portal template, go to Administration -> System Administration -> Manage Portal Themes. Click on a portal theme that is using the template you want to edit. Then click on Customize to edit the template. 2) Adding a Portal Template In some cases, you may wish to start from a brand new template rather than editing an existing one. To add a new portal template, go to Administration -> System Administration -> Manage Portal Themes. Then click Add Template to create a new template. 3) Template Layout Whether you are editing an existing template or adding a brand new one, the Template Layout is where you will spend much of your time working. This is the area where you create and configure the outer frame of your page, including any elements you may wish to place in the header and the footer. 6 P a g e

7 You create the template layout using XML code, with its usual rules and restrictions. When you attempt to save the changes to your page, the system will attempt to validate your code. If the code is invalid, you will be unable to save your changes. Tip: If you would like to learn more about XML coding, there are many resources available online and in print. Tip: You can check to see if the page is valid while you are working by clicking on the validate button at the bottom of Template Layout. 4) Custom Elements In addition to using standard HTML, there are a number of custom elements that may be used when coding your template layout. To use an element, simple determine where you would like to place it within the template and type <elementname />. Below is a list of the default elements. Contents This is the most important of the elements. The Contents element is used to determine where the contents of the page will be displayed. The contents include the theme, layout and page content. Credits This element, usually placed in the footer, allows you to place credits on your page. The text contained within the credits is determined by going to Administration -> System Administration -> Server Settings and editing the Credits field. Date This element displays the current date on the page. GatewayLink This element places a link on the page that can be used for logging in and out of the site. 7 P a g e

8 HelpLink This element displays a link to SharpSchool documentation on SitePublish. PageTitle This element displays the page title. PublishedLinkMenu This element controls where your published link is displayed on the page. To configure the published link menu items, go to Administration -> System Administration -> Manage Published Links. RenderTime This element displays the time it takes a page to load. This can be useful measurement if you are concerned with page load times. SearchBox This element displays a search bar on the page. To place a search button beside the box, you need to add a reference for the button image. So to place a search box with button use: <SearchBox buttonimage= /example/location/button.gif > UserLink This element displays the screen name of the logged in user. If the user is not logged in, it will say, Guest. Clicking on the screen name will bring the user to his user profile. 5) Style Sheets The other key component when editing a portal template is the style sheet. The style sheet allows you to control the look and feel of the page and covers everything from what background is used on the page to how links are handled to what fonts are used. The style sheet uses standard CSS. If you would like more information on creating and editing CSS, there are many online resources available that can provide you with detailed information. 8 P a g e

9 6) Saving the Template Once you have finished with the Template Layout and the Style Sheets, you must save your template. To do so, simply click on the Update Template button at the bottom of the page. The Template Layout will be checked to ensure the code is valid and, if the layout validates successfully, the template will be saved. Note: If the template does not validate, you will be told the layout does not validate and you will be given an opportunity to correct your code. 9 P a g e

10 Portal Structure: Theme Overview The portal theme is nested inside of the portal template. That is, the theme occupies the space between the header and the footer. The theme is used to configure and control elements like advanced site navigation, page titles and breadcrumbs. It is also used to determine where the page content will appear. 10 P a g e

11 1) Editing a Portal Theme To edit an existing portal, click on Administration -> System Administration -> Manage Portal Themes and click the theme you wish to edit. 2) Adding a Portal Theme In some cases, you may wish to add a new theme rather than use an existing theme. To add a new theme, click Administration -> System Administration -> Manage Portal Themes and click Add Portal Theme. 11 P a g e

12 3) Theme Elements There are a number of elements controlled by the theme. Below is a list of elements that are normally included in the theme: Pageset This element is used for placing menus on your page. Both the main navigation bar and side navigation bars can be added via the theme. Here is an example of the code used for the main navigation bar: <pageset style="dynamicmenu" class="main_menu" fontface="arial" fontsize="10" divider="false" maxdepth="3" type="dynamicrootitemwidth" /> The configuration of a sidebar menu is controlled via the Advanced Site Navigation portlet. As a result, it requires a much simpler code to place the menu on the page: <pageset style="custom" controls="true"/> PageContextBar This element is used to place a breadcrumb on the page. PageTitle This element is used to place the page title on the page. Page Thjs element is used to determine where the content will appear on the page. 12 P a g e

13 4) Choosing a Template for the Theme To choose a template when you are working with a portal theme, click on the dropdown menu in the Site Theme field and choose the template you wish to use for the theme. If you would like to use an entirely new template, choose ** New Template ** and click Customize to create the new template. 5) Updating a Theme To update a theme when you have finished making changes to it, click on Update Theme. The theme layout will be checked to ensure it is valid and, if theme is valid, the theme will be updated. 13 P a g e

14 6) Assigning a Theme to a Page To assign a theme to a given page, first load the page. Then click on Advanced -> Page Properties. This will open a new window. From this new window, click on the Theme dropdown menu and choose the theme you would like to use for your page. 7) Assigning a Theme to a Site To assign a theme for the site, click on Administration -> Site Administration -> Edit Site. Click on the dropdown menu for Theme and select the theme you want. 14 P a g e

15 8) Theme Inheritance Explained When setting the theme for a page, you may have noticed that one of the options is Inherit. Inherit is the default theme setting whenever you add a new page and is important part of making sure your site has a consistent look and feel. There are two different places the theme may be inherited from. One possibility is that it may be inherited from the parent page. The other is that it may be inherited from the site theme. The Inherit setting will look at the parent page, the grandparent page, and all other ancestor pages until it finds a page with a theme set. If it does not find a page with the theme set, a page set to Inherit will use the site theme. It is important to note that because the homepage is almost always a different theme than the rest of the site, a page set to inherit will not check the homepage as it looks for a theme set amongst ancestor pages. In the above chart, colors are used to represent the theme. Each box represents a page and the black lines represent the inheritance path. At the top you have the home page and the site theme. As you can tell from the inheritance lines, no pages are inherited from the home page. The next level represents the top level subpages. One is set to Inherit, the other is set to Blue Theme. As you can see from the chart, all pages set to inherit will use the green theme unless they have a parent or other direct ancestor that is using a specific theme. 15 P a g e

16 Portal Structure: Layout Overview Inside the portal theme, is the page layout. The layout is specified on a per page level, and is used to determine where your portlets can be placed on the page. The default layout will have one large region for you to place portlets in, but you may choose one of a number of templates or even create your own custom layout. 16 P a g e

17 Choosing a Layout To choose a layout, click on Advanced -> Page Layout. Choose a layout from the list of available Layout Style choices. If you would rather use a custom layout, choose Custom. When creating a custom template for your page layout, you can use divs or tables to determine the layout of the page. Within these divs or tables use <column order= [column number] ></column> to determine where your regions will be placed on the page. Each column is its own region where you may place portlets. 17 P a g e

18 When you have finished working with your layout, click Update Page to save your layout. The template will be checked to ensure validation and the new layout will be saved. Site Render Templates Overview Site Render Templates are primarily used to control the look and feel of side menu bars (usually found on subpages), news sections, and news content pages. You can access your site render templates by going to Administration -> System Administration -> Site Render Templates. If you look in the action column, you will see that only 5 of the site render templates on this page can be deleted. That is because of how site render templates are structured. Site render templates are inherited from parent sites. So if your site is the child of another site, you will have access to the templates used on the parent site; you will, however, not be able to edit the parent templates from the child site. To edit those templates, you will need to go to the parent site. 18 P a g e

19 1) Editing a Site Render Template To edit a template, first look to see if you see a to the right of the template. If you see the that means that the template is from the site you are working on. To edit the template, just click on the name of the template you wish to edit. If you do not see the then the template is being pulled from a parent site. You can either go to the parent site to edit the template, or you can create a new template, copy and paste the code from the template you wish to edit, and then make your changes to your new template. 2) Adding a Site Render Template To add a new template, go to Administration -> System Administration -> Site Render Templates and click Add New Template. Pitfall: When creating the site render template, be sure to assign the proper category. An otherwise properly configured DataDisplay template will not work if the Category is set to Navigation. 19 P a g e

20 3) Applying DataDisplay Templates There are two primary categories of site render templates you will be working with. One is the DataDisplay category. This category covers the templates for news content and news section pages (i.e. the Advanced Data Display and Advanced Data Summary portlets). To apply a site render template to an Advanced Data Summary (or News Section) portlet, go the page with the portlet and click on Advanced -> Switch to Design Mode. Click Edit on the Advanced Data Summary portlet. Now click on the dropdown menu for Render Template and choose the template you wish to apply. After making your choice, click Update Settings to save the change. 20 P a g e

21 To apply a site render template to an Advanced Data Display (or News Content portlet), go to the page with the portlet and click on Advanced -> Switch to Design Mode. Click Edit on the Advanced Data Display portlet. Now click on the Settings tab and choose a Render Template from the dropdown menu. After making your choice, click Update Settings to save the change. 21 P a g e

22 4) Applying Navigation Templates The other major category of site render template is the Navigation category. Navigation templates are used to control the look and feel of the Advanced Site Navigation (side menu bar) on a site. To apply a navigation template to the Advanced Site Navigation, go to a page that is using Advanced Site Navigation. Then click on Advanced -> Switch to Design Mode and click Edit on the Advanced Site Navigation portlet. Click on the Look & Feel tab and choose the template you wish to use. After making your choice, click Submit to save the change. Note: The Advanced Site Navigation portlet is normally placed within a pageset rather than a region. The pageset is like a site wide region so any change you make to the Advanced Site Navigation portlet on one page will be reflected on all other pages that are using that pageset. 22 P a g e

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

USER S MANUAL JOOMLA! GOVERNMENT WEB TEMPLATE

USER S MANUAL JOOMLA! GOVERNMENT WEB TEMPLATE USER S MANUAL JOOMLA! GOVERNMENT WEB TEMPLATE 1 TABLE OF CONTENTS Introduction 3 Parts of the Government Web Template (GWT) 4 Logging In and Getting Started 5 GWT Joomla! Module Map 8 Editing the Top Bar

More information

User Guide. Chapter 1. SitePublish: Content Management System

User Guide. Chapter 1. SitePublish: Content Management System User Guide Chapter 1 SitePublish: Content Management System Table of Contents About SharpSchool... 4 About this Guide... 4 Who Should Use this Guide... 4 About SitePublish... 5 Accessing your Website...

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

User Guide. Chapter 6. Teacher Pages

User Guide. Chapter 6. Teacher Pages User Guide Chapter 6 s Table of Contents 1. Introduction... 4 I. Enhancements... 5 II. Tips... 6 2. Key Information... 7 3. How to Add a... 8 4. How to Edit... 10 I. SharpSchool s WYSIWYG Editor... 11

More information

Chapter 1: SitePublish User Guide

Chapter 1: SitePublish User Guide Chapter 1: SitePublish User Guide Table of Contents 1. About SharpSchool... 4 2. About this Guide... 4 3. Who Should Use this Guide... 4 4. About SitePublish... 5 5. Accessing your Website... 5 6. Vital

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Winter 6 @salesforcedocs Last updated: October 0, 05 Copyright 000 05 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

WordPress websites themes and configuration user s guide v. 1.6

WordPress websites themes and configuration user s guide v. 1.6 WordPress websites themes and configuration user s guide v. 1.6 Congratulations on your new website! Northeastern has developed two WordPress themes that are flexible, customizable, and designed to work

More information

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites Asbru Ltd Asbru Ltd wwwasbrusoftcom info@asbrusoftcom Asbru Web Content Easily & Inexpensively Create, Publish & Manage Your Websites 31 March 2015 Copyright 2015 Asbru Ltd Version 92 1 Table of Contents

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Create a Google Site in DonsApp

Create a Google Site in DonsApp Create a Google Site in DonsApp 1 Google Web Site Interactive. Constructivist. Collaborative. Communities. WHAT IS GOOGLE SITE? With one single click, you can create a website without any knowledge of

More information

HDAccess Administrators User Manual. Help Desk Authority 9.0

HDAccess Administrators User Manual. Help Desk Authority 9.0 HDAccess Administrators User Manual Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks

More information

RIT Message Center Compose and Send Messages

RIT Message Center Compose and Send Messages RIT Message Center Compose and Send Messages Table of Contents Table of Contents... 2 Logging into Message Center... 3 Category Display... 3 Message Center: Create a Message... 4 Create a New Message without

More information

ADMINISTRATOR GUIDE VERSION

ADMINISTRATOR GUIDE VERSION ADMINISTRATOR GUIDE VERSION 4.0 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

1. Tutorial - Developing websites with Kentico 8... 3 1.1 Using the Kentico interface... 3 1.2 Managing content - The basics... 4 1.2.

1. Tutorial - Developing websites with Kentico 8... 3 1.1 Using the Kentico interface... 3 1.2 Managing content - The basics... 4 1.2. Kentico 8 Tutorial Tutorial - Developing websites with Kentico 8.................................................................. 3 1 Using the Kentico interface............................................................................

More information

Edline Manual Design Guide Version: September 2011

Edline Manual Design Guide Version: September 2011 Edline Manual Design Guide Version: September 2011 Copyright Statements: Edline software is a trademark of Edline. Copyright 2011. Microsoft Windows names and logos are registered trademarks of the Microsoft

More information

When you create your own web site you will need to get or claim your worldwide address also known as a domain name.

When you create your own web site you will need to get or claim your worldwide address also known as a domain name. Create your own Blog website for beginners LESSON ONE: Getting Started World Wide Web Address (www.address.com) Just like your house, every website has an address, so that people can find your web site

More information

Joomla User Manual, Version 1.5

Joomla User Manual, Version 1.5 Joomla User Manual, Version 1.5 Joomla is a content management system that enables you to make and update Web pages easily. Many aspects, including its ease of use and the ability to add to its capabilities,

More information

Create your own teacher or class website using Google Sites

Create your own teacher or class website using Google Sites Create your own teacher or class website using Google Sites To create a site in Google Sites, you must first login to your school Google Apps account. 1. In the top-right corner of any apps, you can click

More information

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide State of Nevada Ektron Content Management System (CMS) Basic Training Guide December 8, 2015 Table of Contents Logging In and Navigating to Your Website Folders... 1 Metadata What it is, How it Works...

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Table of Contents Preface... viii User Administration... 1 Overview... 1 Administration

More information

Joomla! template Blendvision v 1.0 Customization Manual

Joomla! template Blendvision v 1.0 Customization Manual Joomla! template Blendvision v 1.0 Customization Manual Blendvision template requires Helix II system plugin installed and enabled Download from: http://www.joomshaper.com/joomla-templates/helix-ii Don

More information

Egress Switch Secure Workspace 2.x. Administration Guide

Egress Switch Secure Workspace 2.x. Administration Guide Egress Switch Secure Workspace 2.x Administration Guide November 2015 Confidentiality Statement This document contains information confidential and proprietary to Egress Software Technologies. It shall

More information

Edline Manual Design Guide Version: November 2011

Edline Manual Design Guide Version: November 2011 a Blackboard company Edline Manual Design Guide Version: November 2011 Copyright Statements: Edline software is a trademark of Edline, a Blackboard company. Copyright 2011-2012. Microsoft Windows names

More information

Website Builder Overview

Website Builder Overview Website Builder Overview The Website Builder tool gives users the ability to create and manage their own website, which can be used to communicate with students and parents outside of the classroom. Users

More information

How to Build a SharePoint Website

How to Build a SharePoint Website How to Build a SharePoint Website Beginners Guide to SharePoint Overview: 1. Introduction 2. Access your SharePoint Site 3. Edit Your Home Page 4. Working With Text 5. Inserting Pictures 6. Making Tables

More information

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu)

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux

More information

Microsoft SharePoint

Microsoft SharePoint Microsoft SharePoint Microsoft SharePoint 2010 Foundation is a software product used for sharing information, and finding and collaborating on information at a specific place or site. SharePoint can be

More information

Building Your First Drupal 8 Company Site

Building Your First Drupal 8 Company Site Building Websites with Drupal: Learn from the Experts Article Series Building Your First Drupal 8 Company Site by Todd Tomlinson July, 2014 Unicon is a Registered Trademark of Unicon, Inc. All other product

More information

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family technology software href browser communication public login address img links social network HTML div style font-family url media h2 tag handbook: id domain TextEdit blog title PORT JERVIS CENTRAL SCHOOL

More information

Creating Online Surveys with Qualtrics Survey Tool

Creating Online Surveys with Qualtrics Survey Tool Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this

More information

Schools CPD Online General User Guide Contents

Schools CPD Online General User Guide Contents Schools CPD Online General User Guide Contents New user?...2 Access the Site...6 Managing your account in My CPD...8 Searching for events...14 Making a Booking on an Event...20 Tracking events you are

More information

User Guide. Chapter 6. Teacher Pages

User Guide. Chapter 6. Teacher Pages User Guide Chapter 6 s Table of Contents Introduction... 6 Tips for s... 7 Pitfalls... 8 Key Information... 9 I. Adding a... 10 II. Editing a... 12 SharpSchool s WYSIWYG Editor... 13 1) Uploading Images

More information

Frog VLE Update. Latest Features and Enhancements. September 2014

Frog VLE Update. Latest Features and Enhancements. September 2014 1 Frog VLE Update Latest Features and Enhancements September 2014 2 Frog VLE Update: September 2014 Contents New Features Overview... 1 Enhancements Overview... 2 New Features... 3 Site Backgrounds...

More information

Using the Content Management System 05-02-12

Using the Content Management System 05-02-12 Using the Content Management System 05-02-12 Using the Content Management System Introduction 2 Logging In 3 Using the Editor 4 Basic Text Editing 5 Pasting Text 7 Adding Hyperlinks 8 Adding Images 9 Style

More information

DocuShare User Guide

DocuShare User Guide DocuShare User Guide Publication date: April 2011 This document supports DocuShare Release 6.6.1 Prepared by: erox Corporation DocuShare Business Unit 3400 Hillview Avenue Palo Alto, California 94304 USA

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

More information

Reseller Panel Step-by-Step Guide

Reseller Panel Step-by-Step Guide 1. Legal notice setup. Alternative language setup. Enter legal notice as text. Enter legal notice as link 2. ResellerPanel design. Edit colors and layout. Edit themes and icons 3. Create a new customer.

More information

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development

Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development By Kenji Uchida Software Engineer IBM Corporation Level: Intermediate

More information

Scoop Hosted Websites. USER MANUAL PART 4: Advanced Features. Phone: +61 8 9388 8188 Email: scoop@scoopdigital.com.au Website: scoopdigital.com.

Scoop Hosted Websites. USER MANUAL PART 4: Advanced Features. Phone: +61 8 9388 8188 Email: scoop@scoopdigital.com.au Website: scoopdigital.com. Scoop Hosted Websites USER MANUAL PART 4: Advanced Features Phone: +61 8 9388 8188 Email: scoop@scoopdigital.com.au Website: scoopdigital.com.au Index Advanced Features... 3 1 Integrating Third Party Content...

More information

Title: SharePoint Advanced Training

Title: SharePoint Advanced Training 416 Agriculture Hall Michigan State University 517-355- 3776 http://support.anr.msu.edu support@anr.msu.edu Title: SharePoint Advanced Training Document No. - 106 Revision Date - 10/2013 Revision No. -

More information

WEB DESIGN COURSE CONTENT

WEB DESIGN COURSE CONTENT WEB DESIGN COURSE CONTENT INTRODUCTION OF WEB TECHNOLOGIES Careers in Web Technologies How Websites are working Domain Types and Server About Static and Dynamic Websites Web 2.0 Standards PLANNING A BASIC

More information

Google Sites. How to create a site using Google Sites

Google Sites. How to create a site using Google Sites Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google

More information

Indiana Campaign Finance System Secure Site

Indiana Campaign Finance System Secure Site Indiana Campaign Finance System Secure Site Overview The Indiana Campaign Finance System is provided by the Indiana Election Division to enable campaign committees to manage contributions and expenditures,

More information

Using JCPS Online for Websites

Using JCPS Online for Websites Getting Started Before you begin, an Online Group must be created for you. Send an email requesting the group along with the username of anyone you want added as an editor to mike.broderick@jefferson.kyschools.us.

More information

LETTERS, LABELS & EMAIL

LETTERS, LABELS & EMAIL 22 LETTERS, LABELS & EMAIL Now that we have explored the Contacts and Contact Lists sections of the program, you have seen how to enter your contacts and group contacts on lists. You are ready to generate

More information

How to Customize Support Portals

How to Customize Support Portals How to Customize Support Portals 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Sending Email on Blue Hornet

Sending Email on Blue Hornet Sending Email on Blue Hornet STEP 1 Gathering Your Data A. For existing data from Advance or Outlook, pull email address, first name, last name, and any other variable data you would like to use in the

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

Kentico CMS 7.0 Intranet Administrator's Guide

Kentico CMS 7.0 Intranet Administrator's Guide Kentico CMS 7.0 Intranet Administrator's Guide 2 Kentico CMS 7.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

UF Health SharePoint 2010 Introduction to Content Administration

UF Health SharePoint 2010 Introduction to Content Administration UF Health SharePoint 2010 Introduction to Content Administration Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 Introduction to SharePoint 2010 2.0 Hours

More information

Editing your Website User Guide

Editing your Website User Guide User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already

More information

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual Training A brief overview of your website s content management system () with screenshots. 1 Contents Logging In:...3 Dashboard:...4 Page List / Search Filter:...5 Common Icons:...6 Adding a New Page:...7

More information

Helpful icons on the Zurich Platform

Helpful icons on the Zurich Platform Branding User Guide Branding This guide will help you when you are using the Zurich Intermediary Platform. Please note that more detailed instructions regarding branding are included in the Firm Administrator

More information

Cvent Attendee Management

Cvent Attendee Management Cvent Attendee Management 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com customercare@cvent.com U.S. and Canada (toll-free) 866.318.4357 UK (toll-free) 0808.234.4543 Australia (toll-free)

More information

Committee guide to club features on UWESU Website Version 1.1

Committee guide to club features on UWESU Website Version 1.1 Committee guide to club features on UWESU Website Version 1.1 This guide will help you get the best out of your club pages, whether you are a sport, society or network. 1 Logging on and gaining access

More information

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade Exercise: Creating two types of Story Layouts 1. Creating a basic story layout (with title and content)

More information

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Create a Simple Website Intel Easy Steps 1 2012 Intel Corporation Website Creating a Simple Website As more and more people are using the Internet to get information, it has become very important for businesses

More information

Elgg 1.8 Social Networking

Elgg 1.8 Social Networking Elgg 1.8 Social Networking Create, customize, and deploy your very networking site with Elgg own social Cash Costello PACKT PUBLISHING open source* community experience distilled - BIRMINGHAM MUMBAI Preface

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

How to Login Username Password:

How to Login Username Password: How to Login After navigating to the SelecTrucks ATTS Call Tracking & Support Site: www.selectrucksatts.com Select Corporate Link to login for Corporate owned Centers/Locations. Username: Your Email Address

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades. 28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML

More information

Chapter 10 Encryption Service

Chapter 10 Encryption Service Chapter 10 Encryption Service The Encryption Service feature works in tandem with Dell SonicWALL Email Security as a Software-as-a-Service (SaaS), which provides secure data mail delivery solutions. The

More information

Magento 1.4 Themes Design

Magento 1.4 Themes Design Magento 1.4 Themes Design Customize the appearance of your Magento 1.4 e-commerce store with Magento's powerful theming engine Richard Carter [ PUBLISHING 1 open source I community experience distilled

More information

SUCCESSFACTORS LEARNING USER OVERVIEW REFERENCE GUIDE

SUCCESSFACTORS LEARNING USER OVERVIEW REFERENCE GUIDE SUCCESSFACTORS LEARNING USER OVERVIEW REFERENCE GUIDE SuccessFactors, Inc. 4401 Wilson Boulevard, Suite 400 Arlington, VA 22203 Tel: (703) 678-0000 www.successfactors.com Confidential and Proprietary For

More information

Application User s Guide for the Message Manager

Application User s Guide for the Message Manager Application User s Guide for the Message Manager TextCaster 1321 Burlington, Suite A Kansas City, MO 64116 T (816) 746-6835 F (816) 746-6674 www.textcaster.com Table of Contents TextCaster Overview 3 TextCaster

More information

Cascade Server CMS Quick Start Guide

Cascade Server CMS Quick Start Guide Cascade Server CMS Quick Start Guide 1. How to log in 2. How to open page 3. How to edit a page 4. How to create a new page 5. How to publish a page 6. How to change settings to view publish status page

More information

MAGENTO THEME SHOE STORE

MAGENTO THEME SHOE STORE MAGENTO THEME SHOE STORE Developer: BSEtec Email: support@bsetec.com Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1

More information

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family technology software href browser communication public login address img links social network HTML div style font-family url media h2 tag handbook: id domain TextEdit blog title CANAJOHARIE CENTRAL SCHOOL

More information

INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL...

INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL... INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 CONTROL PANEL... 4 ADDING GROUPS... 6 APPEARANCE... 7 BANNER URL:... 7 NAVIGATION... 8

More information

How To Create A Campaign On Facebook.Com

How To Create A Campaign On Facebook.Com Seriously powerful email marketing, made easy Table of Contents DOTMAILER QUICK START GUIDE... 3 Main Screen... 4 Getting Started... 6 STEP 1: CAMPAIGN SETTINGS... 7 STEP 2: CAMPAIGN CONTENT... 8 Editing

More information

One of the fundamental kinds of Web sites that SharePoint 2010 allows

One of the fundamental kinds of Web sites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

DataDirector Getting Started

DataDirector Getting Started DataDirector Getting Started LOGIN Log into the DataDirector website: https://www.achievedata.com/yourdistrictname User Name: New Password: Enter your User Name and Password o After login, you may need

More information

Student Manager s Guide to the Talent Management System

Student Manager s Guide to the Talent Management System Department of Human Resources 50 Student Manager s Guide to the Talent Management System 1 Table of Contents Topic Page SYSTEM INTRODUCTION... 3 GETTING STARTED... 4 NAVIGATION WITHIN THE TALENT MANAGEMENT

More information

Training Schedule: Third Wednesday of every month from 1:30 PM to 3:00 PM in the ARKU Team Meeting Room ARKU A354

Training Schedule: Third Wednesday of every month from 1:30 PM to 3:00 PM in the ARKU Team Meeting Room ARKU A354 OU Campus 101 Training Schedule: Third Wednesday of every month from 1:30 PM to 3:00 PM in the ARKU Team Meeting Room ARKU A354 Class Description: This introductory course is designed specifically to train

More information

Wordpress Training Manual

Wordpress Training Manual Client Adviser CPD Job name: Wordpress CMS Manual Step / Task: Training of Wordpress Content Management System Date: 20 th April, 2013 Training Team: Sami El-Titi 07593 634 5864 / sami@imasdesigns.com

More information

Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4

Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4 CMS Editor How-To Saving work in the CMS... 2 Edit an existing page... 2 Create a new page... 4 Create a side bar section... 4 Upload an image and add to your page... 5 Add an existing image to a Page...

More information

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

Intranet Website Solution Based on Microsoft SharePoint Server Foundation 2010

Intranet Website Solution Based on Microsoft SharePoint Server Foundation 2010 December 14, 2012 Authors: Wilmer Entena 128809 Supervisor: Henrik Kronborg Pedersen VIA University College, Horsens Denmark ICT Engineering Department Table of Contents List of Figures and Tables... 3

More information

efiletexas.gov Review Queue User Guide

efiletexas.gov Review Queue User Guide efiletexas.gov Review Queue User Guide EFS-TF-200-3194 v.4 February 2014 Copyright and Confidentiality Copyright 2014 Tyler Technologies, Inc. All rights reserved. All documentation, source programs, object

More information

School Online Payments Parent User Guide

School Online Payments Parent User Guide School Online Payments Parent User Guide Copyright Rycor Solutions Inc. 2015 Table of Contents Table of Contents................................................... 2 Create a New Parent Account.........................................

More information

SimplyCast emarketing Email User Guide

SimplyCast emarketing Email User Guide SimplyCast emarketing Email User Guide Email User Guide Page 1 Contents 1. Email Overview... 3 2. Features Overview... 3 3. Email Editor Features... 8 4. How to Create an Email Campaign?... 5 5. Additional

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

ONLINE MERCHANT PORTAL USER GUIDE

ONLINE MERCHANT PORTAL USER GUIDE ONLINE MERCHANT PORTAL USER GUIDE MARCH 2015 Content 1. Introduction... 3 1.1. Payments History... 3 2. Getting Started... 4 2.1. Registration... 4 2.2. Logging into Your Account... 6 3. Home Page... 7

More information

For further support information, refer to the Help Resources appendix. To comment on the documentation, send an email to support@tk20.com.

For further support information, refer to the Help Resources appendix. To comment on the documentation, send an email to support@tk20.com. Technical Support and Product Information tk20.com Tk20 Corporate Headquarters 10801 MoPac Expressway, Suite 740, Austin, Texas 78759 USA Tel: 512-401-2000 For further support information, refer to the

More information

Strategic Information Reporting Initiative (SIRI) User Guide for Student Dashboard

Strategic Information Reporting Initiative (SIRI) User Guide for Student Dashboard Strategic Information Reporting Initiative (SIRI) User Guide for Student Dashboard Table of Contents I. Signing into SIRI... 3 A. Logging on... 3 B. Accessing SIRI off campus... 4 C. Questions... 4 II.

More information

Online Payment Parent Portal Users Guide

Online Payment Parent Portal Users Guide Online Payment Parent Portal Users Guide 2015/2016 Acorn www.sturgeon.ab.ca Contents Parent Portal Overview 3 Creating a Parent Account 4 Understanding the Fees Summary Page 7 Understanding the Student

More information

Table of Contents. What is ProSite? What is Behance? How do ProSite & Behance work together? Get Started in 6 Easy Steps.

Table of Contents. What is ProSite? What is Behance? How do ProSite & Behance work together? Get Started in 6 Easy Steps. The Beginners Guide Table of Contents 03 04 05 06 34 35 What is ProSite? What is Behance? How do ProSite & Behance work together? Get Started in 6 Easy Steps See Live Examples Need More Help? What is ProSite?

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

Aspect WordPress Theme

Aspect WordPress Theme by DesignerThemes.com Hi there. Thanks for purchasing this theme, your support is greatly appreciated! This theme documentation file covers installation and all of the main features and, just like the

More information

FAQs. How do I remove the search bar completely?

FAQs. How do I remove the search bar completely? FAQs Company Logo How do I change the logo? Can I make the logo larger or smaller? How do I add change or remove the logo in the footer? Can I add a favicon? Navigation Menu How do I change my navigation

More information

Working with the new enudge responsive email styles

Working with the new enudge responsive email styles Working with the new enudge responsive email styles This tutorial assumes that you have added one of the mobile responsive colour styles to your email campaign contents. To add an enudge email style to

More information

Content Management System QUICK START GUIDE

Content Management System QUICK START GUIDE Content Management System QUICK START GUIDE Revised 03/10/11 TABLE OF CONTENTS Pg. 1... Logging In Pg. 2... Navigating to your site folder Pg. 2... The Folder Tree, Site Structure and Wire Frames Explained.

More information