Arena: Edit External Web Templates (Course #A217)

Size: px
Start display at page:

Download "Arena: Edit External Web Templates (Course #A217)"

Transcription

1 Arena: Edit External Web Templates (Course #A217) Presented by: Alex Nicoletti Arena Product Owner 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective holders.

2 Templates Templates are the framework that defines the appearance and layout of your site. Arena includes a variety of default templates that can be used for your pages, or you can use an existing template as a model for creating your own custom template. For example, if you want to create a custom template with header, menu, content, and footer sections, then you can modify the ArenaSingleColumn template which consists of the following two files: ArenaSingleColumn.ascx ArenaSingleColumn.ascx.cs It is recommended that you place your custom template files in the following folder: Templates\Custom\<ORGID> The main components of the ascx file are the content areas that are placeholders for Arena to place content within as seen in the code for ArenaSingleColumn.ascx below. <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ArenaSingleColumn.ascx.cs" Inherits="ArenaWeb.Templates.SingleColumn" %> <link href="css/arenamaster.css" rel="stylesheet" type="text/css" /> <div id="container"> <div id="header" class="pad"> <asp:placeholder ID="phHeader" runat="server"></asp:placeholder> <div id="horiznav" class="pad"> <asp:placeholder ID="phHorizNav" runat="server"></asp:placeholder> <div id="singlecontent" class="pad"> <asp:placeholder ID="phMain" runat="server"></asp:placeholder> <div id="footer" class="pad"> <asp:placeholder ID="phFooter" runat="server"></asp:placeholder> NOTE: If you do not need all the placeholders, DO NOT just remove them from the ASCX file, as the code behind might have reference to it and could cause the template not to load. It is best to comment out that section. <! <asp:placeholder ID="phFooter" runat="server"></asp:placeholder> > 2

3 The important thing to note in your code behind file is that you must publically declare each placeholder that is referenced in your ascx file, as can be seen in ArenaSingleColumn.ascx.cs below. namespace ArenaWeb.Templates { using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Arena.Portal; public partial class SingleColumn : PortalControl { public PlaceHolder Header { get { return phheader; } } public PlaceHolder Navigation { get { return phhoriznav; } } public PlaceHolder Main { get { return phmain; } } public PlaceHolder Footer { get { return phfooter; } } protected void Page_Load(object sender, EventArgs e) { } } } You can also change the name of your class, but you must also remember to inherit the proper namespace. For example, if you create a new template called TestTemplate and use the following class name: public partial class TestTemplate : PortalControl Then in your TestTemplate.ascx file, you must change the Inherits statement to the following: Inherits="ArenaWeb.Templates.TestTemplate" If you want to customize your template s styling then in order to avoid the possibility of your custom work being overwritten or lost during a future Arena update, it is recommended that you create a custom stylesheet for your template rather than modifying an existing stylesheet. It is recommended that new.css files be placed in the following folder: CSS\Custom\<ORGID> 3

4 Portals Your Arena installation includes three portals. Each portal is a separate set of pages, modules, and security settings. Arena (Internal) This portal is the primary portal that staff will access on a daily basis. Arena Mobile This portal s specific design is for use on any web enabled smart phone. Arena Web This portal s specific design is for the use of external website features such as online giving, event registration, and the group locator. This is the non responsive version and will soon be deprecated. Members Responsive This portal s specific design is for use of external website features, similar to the Arena Web portal, except the modules and structure are designed to work across multiple device resolutions (Bootstrap responsive). The majority of your website uses the same template. If you decide that you want to create a custom template with a custom stylesheet for your Arena Web portal, then you change the stylesheet that the portal uses on the Portal List page. 1. Go to Administration Portal List. 2. Click on the Portal Name (e.g. ArenaWeb). 3. Enter the URL path for Portal Style Sheet. For example, css/custom/test.css 4. Click Update. 4

5 Available Templates To view a list of all templates currently available in Arena, go to Administration > Templates. Steps to Add a New Template: 1. Go to Administration >Templates. 2. Click Add New Template. 3. Click Edit Details. 4. Add a Template Name. 5. Enter the Template URL path. For example, ~/Templates/Custom/ TestTemplate.ascx 6. Enter a description for this template. 7. Click Update. 5

6 Applying a Template to a Page Steps to Apply a Template to a Page: 1. Go to Administration > Pages. 2. Go to Web Pages > Homepage > Child Pages. 3. Click the Add New Page icon. 4. Click Page Details. 5. Select Template. 6. Click Update. Your page is now created with your new template applied to it. You now have tabs that correspond to the content sections ( Header Content, Navigation Content, Main Content, and Footer Content ) that you defined in the UserControl code. You can now add modules to each of your content areas. You do this by clicking one of the tabs ( Header Content for example), clicking Add, and choosing the module that you want in that section. NOTE: When creating multiple child pages, make sure you set the template properly on the Parent as new child pages copy the template settings, as well as security and default modules, from the parent page. 6

7 Q&A Class Discussion 7

8 Alex Nicoletti Arena Product Owner Alex is currently the Arena Product Owner in Shelby's Technology Development Division and is a Certified Scrum Product Owner. Prior to joining the Shelby Team, Alex Nicoletti worked as a Network and Arena Administrator at a large church in Tampa, Florida. The experience he gained during this time helped fuel his passion to empower and equip churches to successfully minister.

2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective holders.

2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective holders. 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective holders. Objective To provide a brief overview of some of the functionality available to

More information

Arena: Edit Existing Reports

Arena: Edit Existing Reports Arena: Edit Existing Reports (Course A27) Presented by: Ben Lane Senior Staff Trainer 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective holders.

More information

Arena: Modify Check-In Labels (Course #A231)

Arena: Modify Check-In Labels (Course #A231) Arena: Modify Check-In Labels (Course #A231) Presented by: Ben Lane Senior Staff Trainer 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective

More information

Activating AspxCodeGen 4.0

Activating AspxCodeGen 4.0 Activating AspxCodeGen 4.0 The first time you open AspxCodeGen 4 Professional Plus edition you will be presented with an activation form as shown in Figure 1. You will not be shown the activation form

More information

Arena Reports Using Report Builder

Arena Reports Using Report Builder Arena Reports Using Report Builder (Course #A127) Presented by: Ben Lane Senior Staff Trainer 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective

More information

Arena Development 101 / 102 Courses # A280, A281 IMPORTANT: You must have your development environment set up for this class

Arena Development 101 / 102 Courses # A280, A281 IMPORTANT: You must have your development environment set up for this class Arena Development 101 / 102 Courses # A280, A281 IMPORTANT: You must have your development environment set up for this class Presented by: Jeff Maddox Director of Platform Integrations, Ministry Brands

More information

How to Customize Support Portals

How to Customize Support Portals How to Customize Support Portals 2017 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

How to Customize Support Portals

How to Customize Support Portals How to Customize Support Portals 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective

More information

ASP.NET Security. 7/26/2017 EC512 Prof. Skinner 1

ASP.NET Security. 7/26/2017 EC512 Prof. Skinner 1 ASP.NET Security 7/26/2017 EC512 Prof. Skinner 1 ASP.NET Security Architecture 7/26/2017 EC512 Prof. Skinner 2 Security Types IIS security Not ASP.NET specific Requires Windows accounts (NTFS file system)

More information

Arena Dashboard Part 1: Querying Tags & Groups

Arena Dashboard Part 1: Querying Tags & Groups Arena Dashboard Part 1: Querying Tags & Groups (Course A20) Presented by: Alex Nicoletti, Arena Product & Implementations Manager And Arnold Wheatley, Shelby Contract Trainer 2017 Shelby Systems, Inc.

More information

Arena Reports Using Report Builder

Arena Reports Using Report Builder Arena Reports Using Report Builder (Course #A127) Presented by: Staci Sampson Contract Trainer 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective

More information

Editing your SiteAssist Professional Template

Editing your SiteAssist Professional Template Editing your SiteAssist Professional Template This Solution Recipe shows you how you can edit your SiteAssist Professional created templates to suit your needs. SiteAssist Professional creates your entire

More information

Case Management Implementation Guide

Case Management Implementation Guide Case Management Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Arena Assignments: Practical Application Course #A219

Arena Assignments: Practical Application Course #A219 Arena Assignments: Practical Application Course #A219 Presented by: Arnold Wheatley Shelby Contract Trainer 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks

More information

SQL Server Reporting Services for v.5, Arena or ShelbyNext Financials How to Start!

SQL Server Reporting Services for v.5, Arena or ShelbyNext Financials How to Start! SQL Server Reporting Services for v.5, Arena or ShelbyNext Financials How to Start! (Course E17) Presented by: Arnold Wheatley Shelby Contract Trainer 2017 Shelby Systems, Inc. Other brand and product

More information

ShelbyNext Membership: Calendar

ShelbyNext Membership: Calendar ShelbyNext Membership: Calendar (Course #M170) Presented by: Kristy Shotwell Ministry Consultant 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective

More information

Wolf. Responsive Website Designer. Mac Edition User Guide

Wolf. Responsive Website Designer. Mac Edition User Guide Wolf Responsive Website Designer Mac Edition User Guide Version 2.10.3 Table of Contents What is Wolf Website Designer? Editor overview Save and open website Create responsive layout How to create responsive

More information

Getting Started with MadCap Flare Part 2: Feature Concepts

Getting Started with MadCap Flare Part 2: Feature Concepts Getting Started with MadCap Flare Part 2: Feature Concepts Who Am I?» Neil Perlin Hyper/Word Services. Internationally recognized content creation and delivery consultant. Helps create efficient, flexible

More information

ASP.NET Pearson Education, Inc. All rights reserved.

ASP.NET Pearson Education, Inc. All rights reserved. 1 ASP.NET 2 Rule One: Our client is always right. Rule Two: If you think our client is wrong, see Rule One. Anonymous 3 25.1 Introduction ASP.NET 2.0 and Web Forms and Controls Web application development

More information

IEEE Wordpress Theme Documentation

IEEE Wordpress Theme Documentation IEEE Wordpress Theme Documentation Version 1.0.2 2014-05- 16 Table of Contents TABLE OF CONTENTS 2 INITIAL SETUP 3 FRONT PAGE 3 POSTS PAGE 4 CONTACT 5 SITE MAP 6 MENU 7 HOME PAGE 8 PAGE TEMPLATES 10 LEFT

More information

3 Customer records. Chapter 3: Customer records 57

3 Customer records. Chapter 3: Customer records 57 Chapter 3: Customer records 57 3 Customer records In this program we will investigate how records in a database can be displayed on a web page, and how new records can be entered on a web page and uploaded

More information

Parent Portal User Guide

Parent Portal User Guide Parent Portal User Guide Table of Contents LOGIN TO THE PARENT PORTAL... 2 RETRIEVE LOST LOGIN DETAILS... 3 CHANGE YOUR PASSWORD... 5 CHANGE OR CONFIRM YOUR DETAILS & MEDICAL INFORMATION... 6 NAVIGATING

More information

Product Page PDF Magento Extension

Product Page PDF Magento Extension Product Page PDF Magento Extension User Manual This is the user manual of Magento Product Page PDF v2.0.2 and was last updated on 26-11-2017. To see what this extension can do, go to the Magento Product

More information

SiteAssist Professional - Getting Started Guide

SiteAssist Professional - Getting Started Guide SiteAssist Professional - Getting Started Guide This Getting Started Guide covers the basics of running through SiteAssist Professional to create your own site. It also demonstrates the steps required

More information

SiteAssist Professional Help Documentation. Copyright 2008 WebAssist.com Corporation All rights reserved.

SiteAssist Professional Help Documentation. Copyright 2008 WebAssist.com Corporation All rights reserved. SiteAssist Professional Help Documentation Copyright 2008 WebAssist.com Corporation All rights reserved. User Interface Access WebAssist Category of Insert toolbar SiteAssist Professional Wizard SiteAssist

More information

Pre-Conversion Checklist

Pre-Conversion Checklist v.5 to Arena/ShelbyNext Updated: 11/03/2017 2017 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders. Contents Overview...

More information

Lecture 13. Page Layout. Mr. Mubashir Ali Lecturer (Dept. of Computer Science)

Lecture 13. Page Layout. Mr. Mubashir Ali Lecturer (Dept. of Computer Science) Lecture 13 Page Layout Mr. Mubashir Ali Lecturer (Dept. of dr.mubashirali1@gmail.com 1 Summary of the previous lecture Font properties Controlling text with CSS Styling links Styling background Styling

More information

Webnodes Developers Manual

Webnodes Developers Manual Webnodes Webnodes Developers Manual Framework programming manual Administrator 1/1/2010 Webnodes Developers manual Webnodes Overview... 5 Definitions and meanings of words... 5 Introduction... 5 Key components...

More information

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views!

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views! Dreamweaver CS6 Table of Contents Setting up a site in Dreamweaver! 2 Templates! 3 Using a Template! 3 Save the template! 4 Views! 5 Properties! 5 Editable Regions! 6 Creating an Editable Region! 6 Modifying

More information

INTRODUCTION TO CSS. Mohammad Jawad Kadhim

INTRODUCTION TO CSS. Mohammad Jawad Kadhim INTRODUCTION TO CSS Mohammad Jawad Kadhim WHAT IS CSS Like HTML, CSS is an interpreted language. When a web page request is processed by a web server, the server s response can include style sheets,

More information

Create and Manage Partner Portals

Create and Manage Partner Portals Create and Manage Partner Portals Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Daniel Ferguson Certified MadCap Flare Trainer & Consultant Founder of Smart Output

Daniel Ferguson Certified MadCap Flare Trainer & Consultant Founder of Smart Output Daniel Ferguson Certified MadCap Flare Trainer & Consultant Founder of Smart Output < /> daniel@smartoutput.com @ferg_daniel linkedin.com/in/danielsferguson smartoutput.com 3 Variables TOCs Concepts Publish

More information

Arena Lists (Pre-ISC Lecture)

Arena Lists (Pre-ISC Lecture) Arena Lists (Pre-ISC Lecture) (Course #A101) Presented by: William Ross Shelby Contract Trainer 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the respective

More information

Liferay User Management. Kar Joon Chew Oct 2011

Liferay User Management. Kar Joon Chew Oct 2011 Liferay User Management Kar Joon Chew Oct 2011 Terminology You will See 2 Understand the Relationship 3 Resource Resources are scoped into portal, group, page, and content model-resource and application

More information

Designing the Home Page and Creating Additional Pages

Designing the Home Page and Creating Additional Pages Designing the Home Page and Creating Additional Pages Creating a Webpage Template In Notepad++, create a basic HTML webpage with html documentation, head, title, and body starting and ending tags. From

More information

Citrus Granite Lacquer Lichen Petal Plastic Simple Verdant Using the Designer...

Citrus Granite Lacquer Lichen Petal Plastic Simple Verdant Using the Designer... 2011 USER GUIDE Table of Contents Using the Project Wizard... 3 Namespace Page... 3 Framework... 4 Database Connection Page... 5 Data Provider... 5 Connection String... 5 Database Tables... 6 Business

More information

ASP.NET - MULTI THREADING

ASP.NET - MULTI THREADING ASP.NET - MULTI THREADING http://www.tutorialspoint.com/asp.net/asp.net_multi_threading.htm Copyright tutorialspoint.com A thread is defined as the execution path of a program. Each thread defines a unique

More information

How to: Create a Site in a SharePoint Site Collection. Updated: 12 July 2012

How to: Create a Site in a SharePoint Site Collection. Updated: 12 July 2012 How to: Create a Site in a SharePoint Site Collection Updated: 12 July 2012 Table of Contents Creating sites in the HPIT/Sites sit e collect ion... 3 Create the site... 3 Initial setup... 4 Banner Setup...

More information

Siteforce Pilot: Best Practices

Siteforce Pilot: Best Practices Siteforce Pilot: Best Practices Getting Started with Siteforce Setup your users as Publishers and Contributors. Siteforce has two distinct types of users First, is your Web Publishers. These are the front

More information

Premium Administrator Manual

Premium Administrator Manual Premium Administrator Manual The Power of Community shelbysystems. Shelby Systems, Inc. 7345 Goodlett Farms Parkway Cordova, TN 38016 800-722-0222 www.shelbysystems.com Copyright 2015 Shelby Systems, Inc.

More information

WEB DESIGN QUESTIONNAIRE

WEB DESIGN QUESTIONNAIRE Let s make it easy to understand the project. You are team member of this project. With your cooperation and support during the project will help a lot to complete project in time. 1. PROJECT INFO 1.1

More information

AHC SharePoint 2010 Intro to Content Administration

AHC SharePoint 2010 Intro to Content Administration AHC SharePoint 2010 Intro to Content Administration Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 1.0 INTRODUCTION TO SHAREPOINT 2010 1.4 Your New Site Before

More information

COOKBOOK Creating an Order Form

COOKBOOK Creating an Order Form 2010 COOKBOOK Creating an Order Form Table of Contents Understanding the Project... 2 Table Relationships... 2 Objective... 4 Sample... 4 Implementation... 4 Generate Northwind Sample... 5 Order Form Page...

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

CA Clarity Project & Portfolio Manager

CA Clarity Project & Portfolio Manager CA Clarity Project & Portfolio Manager CA Clarity PPM Connector for Microsoft SharePoint Product Guide v1.1.0 Second Edition This documentation and any related computer software help programs (hereinafter

More information

Unveiling the Basics of CSS and how it relates to the DataFlex Web Framework

Unveiling the Basics of CSS and how it relates to the DataFlex Web Framework Unveiling the Basics of CSS and how it relates to the DataFlex Web Framework Presented by Roel Fermont 1 Today more than ever, Cascading Style Sheets (CSS) have a dominant place in online business. CSS

More information

Project Management Framework

Project Management Framework Project Management Framework Release Notes Version 7.1.1 Framework Overview The Project Management Framework (PMF) is a powerful Project Management application designed for the management of Scrum projects.

More information

Implementing and Supporting Windows Intune

Implementing and Supporting Windows Intune Implementing and Supporting Windows Intune Module 3: Computer Administration by Using Windows Intune Module Overview Understanding Groups Creating and Populating Groups The Windows Intune Update Process

More information

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website.

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website. 9 Now it s time to challenge the serious web developers among you. In this section we will create a website that will bring together skills learned in all of the previous exercises. In many sections, rather

More information

Flowtime Website Installation and Configuration Aug Product Version 8.1+

Flowtime Website Installation and Configuration Aug Product Version 8.1+ PNMsoft Knowledge Base Sequence Administrator Guides Flowtime Website Installation and Configuration Aug. 2016 Product Version 8.1+ 2016 PNMsoft All Rights Reserved This document, including any supporting

More information

Standards User Guide. PowerSchool 6.0 Student Information System

Standards User Guide. PowerSchool 6.0 Student Information System PowerSchool 6.0 Student Information System Released June 2009 Document Owner: Document Services This edition applies to Release 6.0 of the PowerSchool Premier software and to all subsequent releases and

More information

Module 2: Using Master Pages

Module 2: Using Master Pages Module 2: Using Master Pages Contents Overview 1 Lesson: Advantages of Using Master Pages 2 Lesson: Writing Master and Content Pages 9 Lesson: Writing Nested Master Pages 21 Lesson: Programming Master

More information

ShelbyNext Membership: Use Mobile App Connection as Ministry Leader Tool (Course #N144)

ShelbyNext Membership: Use Mobile App Connection as Ministry Leader Tool (Course #N144) ShelbyNext Membership: Use Mobile App Connection as Ministry Leader Tool (Course #N144) Presented by: Betty Heston Shelby Consultant 2017 Shelby Systems, Inc. Other brand and product names are trademarks

More information

TRAINING GUIDE. Rebranding Lucity Web

TRAINING GUIDE. Rebranding Lucity Web TRAINING GUIDE Rebranding Lucity Web Rebranding Lucity Web Applications In this booklet, we ll show how to make the Lucity web applications your own by matching your agency s style. Table of Contents Web

More information

Merge Data from Shelby v.5 & ShelbyNext to Microsoft Word

Merge Data from Shelby v.5 & ShelbyNext to Microsoft Word Merge Data from Shelby v.5 & ShelbyNext to Microsoft Word (Course #E236) Presented by: Betty Heston, Shelby Consultant 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered

More information

USER MANUAL APPLYING FOR SERVICES IN NIVESH MITRA HEADING 1. Heading 2

USER MANUAL APPLYING FOR SERVICES IN NIVESH MITRA HEADING 1. Heading 2 APPLYING FOR SERVICES IN NIVESH MITRA HEADING 1 On the Insert tab, the galleries include items that are designed to coordinate with the overall look of your document. You can use these galleries to insert

More information

LUXE READYTHEME CUSTOMIZATION

LUXE READYTHEME CUSTOMIZATION LUXE READYTHEME CUSTOMIZATION Updated April 2017 Installing the Luxe ReadyTheme These instructions are for installing the Luxe ReadyTheme to a brand new store. If you apply this framework to your existing

More information

Product Page PDF Magento 2 Extension

Product Page PDF Magento 2 Extension Product Page PDF Magento 2 Extension User Manual This is the user manual of Magento 2 Product Page PDF v100.0.0 and was last updated on 26-11- 2017. To see what this extension can do, go to the Magento

More information

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information

8 Library loan system

8 Library loan system Chapter 8: Library loan system 153 8 Library loan system In previous programs in this book, we have taken a traditional procedural approach in transferring data directly between web pages and the ASP database.

More information

Cascading Style Sheets Level 2

Cascading Style Sheets Level 2 Cascading Style Sheets Level 2 Course Objectives, Session 1 Level 1 Quick Review Chapter 6 Revisit: Web Fonts Chapter 8: Adding Graphics to Web Pages Chapter 9: Sprucing Up Your Site s Navigation Begin

More information

Documentation of Woocommerce Login / Sign up Premium. Installation of Woocommerce Login / Sign up Premium

Documentation of Woocommerce Login / Sign up Premium. Installation of Woocommerce Login / Sign up Premium Documentation of Woocommerce Login / Sign up Premium Installation of Woocommerce Login / Sign up Premium Installation Install Word Press from http://codex.wordpress.org/installing_wordpress. Upload via

More information

MN Studio Website - User Guide

MN Studio Website - User Guide MN Studio Website - User Guide Version 1.1 MN Studio Website Program 1. Introduction Welcome to the new website program! The MN Studio Website program allows you to create your own website with customized

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Spring 16 @salesforcedocs Last updated: April 27, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

ShelbyNext Membership: Settings

ShelbyNext Membership: Settings ShelbyNext Membership: Settings (Course #M162) Presented by: Linda Johnson Shelby Contract Trainer 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the

More information

Quick Reference Guide SharePoint Quick Reference Guide

Quick Reference Guide SharePoint Quick Reference Guide Quick Reference Guide 1 P age Table of Contents What is SharePoint?... 3 1. Home Page Layout... 4 2. Uploading Documents to a Library... 6 3. To Open a Document... 7 4. To Delete a Document... 7 5. Adding

More information

Word Training - Maintaining Consistency Supporting Handout Designing Styles within a Word Template Version: Mac

Word Training - Maintaining Consistency Supporting Handout Designing Styles within a Word Template Version: Mac Word Training - Maintaining Consistency Supporting Handout Designing Styles within a Word Template Version: Mac 1. File > New Document 2. Home tab > select Styles Pane 3. The Styles pane lists the complete

More information

Integrate WebScheduler to Microsoft SharePoint 2007

Integrate WebScheduler to Microsoft SharePoint 2007 Integrate WebScheduler to Microsoft SharePoint 2007 This white paper describes the techniques and walkthrough about integrating WebScheduler to Microsoft SharePoint 2007 as webpart. Prerequisites The following

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

Technical Intro Part 1

Technical Intro Part 1 Technical Intro Part 1 Learn how to create, manage, and publish content with users and groups Hannon Hill Corporation 950 East Paces Ferry Rd Suite 2440, 24 th Floor Atlanta, GA 30326 Tel: 800.407.3540

More information

Word 2016: Using Section Breaks

Word 2016: Using Section Breaks Word 2016: Using Section Breaks Section formatting allows you to apply different page layout settings within the same document. For example, you can change the following formats for each section: Margins

More information

Word Training - Maintaining Consistency Supporting Handout Designing Styles within a Word Template Version: Windows

Word Training - Maintaining Consistency Supporting Handout Designing Styles within a Word Template Version: Windows Word Training - Maintaining Consistency Supporting Handout Designing Styles within a Word Template Version: Windows 1. File > New > Blank Document 2. View styles pane in the Styles group Click the styles

More information

To register for the Colorful Choices Challenge you must complete TWO Steps: 1. Create a Health Fitness Account 2. Create a Colorful Choices Account

To register for the Colorful Choices Challenge you must complete TWO Steps: 1. Create a Health Fitness Account 2. Create a Colorful Choices Account To register for the Colorful Choices Challenge you must complete TWO Steps: 1. Create a Health Fitness Account 2. Create a Colorful Choices Account HOW TO CREATE A HEALTH FITNESS ACCOUNT: Go to https://healthyemory.biovia.healthfitness.com

More information

When you complete this chapter, you will be able to:

When you complete this chapter, you will be able to: Page Layouts CHAPTER 7 When you complete this chapter, you will be able to: Understand the normal fl ow of elements Use the division element to create content containers Create fl oating layouts Build

More information

RegEx - Numbers matching. Below is a sample code to find the existence of integers within a string.

RegEx - Numbers matching. Below is a sample code to find the existence of integers within a string. RegEx - Numbers matching Below is a sample code to find the existence of integers within a string. Sample code pattern to check for number in a string: using System; using System.Collections.Generic; using

More information

ShelbyNext Financials: General Ledger Special Reports (Hands On)

ShelbyNext Financials: General Ledger Special Reports (Hands On) ShelbyNext Financials: General Ledger Special Reports (Hands On) [Course F133] Presented by: Bill Ballou Shelby Training Manager 2018 Shelby Systems, Inc. Other brand and product names are trademarks or

More information

RegEx-validate IP address. Defined below is the pattern for checking an IP address with value: String Pattern Explanation

RegEx-validate IP address. Defined below is the pattern for checking an IP address with value: String Pattern Explanation RegEx-validate IP address Defined below is the pattern for checking an IP address with value: 240.30.20.60 String Pattern Explanation 240 ^[0-9]1,3 To define the starting part as number ranging from 1

More information

Chapter 6. Rich Page Composition... 1 Working with Master Pages... 2 Working with Themes Working with Wizards Conclusion...

Chapter 6. Rich Page Composition... 1 Working with Master Pages... 2 Working with Themes Working with Wizards Conclusion... Table of Contents... 1 Working with Master Pages... 2 Working with Themes... 19 Working with Wizards... 31 Conclusion... 44 Page 1 Return to Table of Contents Chapter 6 Rich Page Composition In this chapter:

More information

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions: Quick Start Guide This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:. How can I install Kentico CMS?. How can I edit content? 3. How can I insert an image or

More information

Accessibility of EPiServer s Sample Templates

Accessibility of EPiServer s Sample Templates Accessibility of EPiServer s Templates An evaluation of the accessibility of EPiServer s sample according to current recommendations and guidelines elaborated by the World Wide Web Consortium s (W3C) Web

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Early Years - Two Year Old Funding Citizen Portal

Early Years - Two Year Old Funding Citizen Portal Early Years - Two Year Old Funding Citizen Portal last updated for the Summer 2017 (3.63) release Handbook Revision History Version Published on Summer 2017 (3.63) - 1.0 18/07/2017 Doc Ref Early Years

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Spring 6 @salesforcedocs Last updated: April 7, 06 Copyright 000 06 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Reusing and Sharing Data

Reusing and Sharing Data Sitecore CMS 6.4 Reusing and Sharing Data Rev: 2013-09-13 Sitecore CMS 6.4 Reusing and Sharing Data Tips and Techniques for Developers Table of Contents Chapter 1 Reusing and Sharing Data... 3 1.1 Sharing

More information

ShelbyNext Membership: Check-In Configuration

ShelbyNext Membership: Check-In Configuration ShelbyNext Membership: Check-In Configuration (Course #M113) Presented by: Lisa Horn, Shelby Consultant 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of

More information

Unit-4 Working with Master page and Themes

Unit-4 Working with Master page and Themes MASTER PAGES Master pages allow you to create a consistent look and behavior for all the pages in web application. A master page provides a template for other pages, with shared layout and functionality.

More information

Microsoft Partner Day. Introduction to SharePoint for.net Developer

Microsoft Partner Day. Introduction to SharePoint for.net Developer Microsoft Partner Day Introduction to SharePoint for.net Developer 1 Agenda SharePoint Product & Technology Windows SharePoint Services for Developers Visual Studio Extensions For Windows SharePoint Services

More information

Reusing and Sharing Data

Reusing and Sharing Data Sitecore CMS 7.0 Reusing and Sharing Data Rev: 2013-09-13 Sitecore CMS 7.0 Reusing and Sharing Data Tips and Techniques for Developers Table of Contents Chapter 1 Reusing and Sharing Data... 3 1.1 Sharing

More information

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02)

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02) Oracle Enterprise Performance Reporting Cloud What s New in February 2017 Update (17.02) February 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, FEBRUARY UPDATE...

More information

5 Snowdonia. 94 Web Applications with C#.ASP

5 Snowdonia. 94 Web Applications with C#.ASP 94 Web Applications with C#.ASP 5 Snowdonia In this and the following three chapters we will explore the use of particular programming techniques, before combining these methods to create two substantial

More information

FSC MARKETING TOOLKIT USER STARTER GUIDE

FSC MARKETING TOOLKIT USER STARTER GUIDE FSC MARKETING TOOLKIT USER STARTER GUIDE 1 How to log in 2 How to find your credentials and your first login 3 Navigate the Toolkit to see what s in it 4 New functionalities 5 Toolkit s scope of applications

More information

Blackbird Books and Supplies

Blackbird Books and Supplies Blackbird Books and Supplies Final Documentation Team Blackbird Mike Pratt Ridha Joudah Jayati Dandriyal Joseph Manga 1 Contents Site Hierarchy... 3 Home (Default Page)... 4 About... 6 Contact... 8 Login...

More information

Google Sites Training

Google Sites Training The How to Dos of Google Sites Overview Page 1 Google Sites offers tremendous functionality to make collaborating and sharing information simple. This job aid provides the step-by-step instructions that

More information

Developing User Controls in EPiServer

Developing User Controls in EPiServer Developing User Controls in EPiServer Abstract It is recommended that developers building Web sites based on EPiServer create their own user controls with links to base classes in EPiServer. This white

More information

CUSTOMER PORTAL Splash Pages

CUSTOMER PORTAL Splash Pages CUSTOMER PORTAL Splash Pages SPLASHPAGES In the splash page area, you can either create a custom splash page or use our editing tool and create a custom splash page using your own code. These splash pages

More information

SharePoint Online 101

SharePoint Online 101 Work Smart by Microsoft IT SharePoint Online 101 Customization note: This document contains guidance and/or step-by-step installation instructions that can be reused, customized, or deleted entirely if

More information

This tutorial starts by highlighting the benefits of nested master pages. It then shows how to create and use nested master pages.

This tutorial starts by highlighting the benefits of nested master pages. It then shows how to create and use nested master pages. Master Pages :: Nested Master Pages Introduction Over the course of the past nine tutorials we have seen how to implement a site-wide layout with master pages. In a nutshell, master pages allow us, the

More information

Vebra Search Integration Guide

Vebra Search Integration Guide Guide Introduction... 2 Requirements... 2 How a Vebra search is added to your site... 2 Integration Guide... 3 HTML Wrappers... 4 Page HEAD Content... 4 CSS Styling... 4 BODY tag CSS... 5 DIV#s-container

More information

ForeScout CounterACT. Configuration Guide. Version 5.0

ForeScout CounterACT. Configuration Guide. Version 5.0 ForeScout CounterACT Core Extensions Module: Reports Plugin Version 5.0 Table of Contents About the Reports Plugin... 3 Requirements... 3 Supported Browsers... 3 Verify That the Plugin Is Running... 5

More information