wcm4

98
Working with WCM and iParts

Upload: jkifinity

Post on 15-Jan-2015

121 views

Category:

Documents


0 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Wcm4

Working with WCM and iParts

Page 2: Wcm4

Introduction

• Web Designer with iFINITY• Background – web and graphics design and

CMS implementation• I take Photoshop designs and customise for

WCM

Page 3: Wcm4

Objectives

1. Create a new website2. How and where to customise a theme3. Themes4. Logo, banner and icons5. Colour and CSS6. Content – content layout and zone properties

Page 4: Wcm4

The basic framework

Page 5: Wcm4

The finished site

Page 6: Wcm4

Objectives

1. Create a new website2. How and where to customise a theme3. Themes4. Logo, banner and icons5. Colour and CSS6. Content – content layout and zone properties

Page 7: Wcm4

Getting started

To create a website it is easiest to copy anexisting sample site, such as Member, and

change it to meet your needs

Page 8: Wcm4

Getting started

To create a website it is easiest to copy anexisting sample site, such as Member, and

change it to meet your needs

Page 9: Wcm4

Content Management

Page 10: Wcm4

Sites

Page 11: Wcm4

Create a new website

Page 12: Wcm4

Create a new website

Page 13: Wcm4

Create a new website

Page 14: Wcm4

Objectives

1. Create a new website2. How and where to customise a theme3. Themes4. Logo, banner and icons5. Colour and CSS6. Content – content layout and zone properties

Page 15: Wcm4

Next steps

Customise

• Look and feel• Navigation areas• Content

Page 16: Wcm4

Look and Feel

Page 17: Wcm4

Look and Feel

Page 18: Wcm4

Look and Feel

You can change the look and feel of sites byselecting different combinations of a masterpage and its matching themes

Page 19: Wcm4

Navigation

Page 20: Wcm4

Content

Page 21: Wcm4

Objectives

1. Create a new website2. How and where to customise a theme3. Themes4. Logo, banner and icons5. Colour and CSS6. Content – content layout and zone properties

Page 22: Wcm4

Cities

MasterPage/Template to use for the site'slayout• Forest

Theme (colors, fonts, etc.)• Aspen• Austin

Page 23: Wcm4

Planets

Page 24: Wcm4

Forest

Page 25: Wcm4

Choosing a theme

The iMIS themes give you a head start ondeveloping your web site

Decide which theme is closest to the final lookand layout that you want

Page 26: Wcm4

Forest

Page 27: Wcm4

Objectives

1. Create a new website2. How and where to customise a theme3. Themes4. Logo, banner and icons5. Colour and CSS6. Content – content layout and zone properties

Page 28: Wcm4

Photoshop design

• Slice the design• Save images as JPG for photos and complex

images• Save images as PNG for icons, buttons and

background colors• Optimise images

Page 29: Wcm4

Photoshop design

Page 30: Wcm4

Start by changing theme headersHighly visible header elements

• Logo• Social networking links• Welcome banner• Favicon• Copyright statement

Page 31: Wcm4

Logo• To add your own logo, edit this content record,

remove the contents in the HTML iPart, and replace with your own logo

• You can change the logo in the CSS.

Page 32: Wcm4

Logo• To add your own logo, edit this content record,

remove the contents, and replace with your own logo

• You can change the logo in the CSS.

Page 33: Wcm4

Logo

Page 34: Wcm4

Logo

Page 35: Wcm4

Logo

Page 36: Wcm4

Logo

Page 37: Wcm4

Logo

Page 38: Wcm4

Logo

Page 39: Wcm4

Logo

Page 40: Wcm4

Logo

Page 41: Wcm4

Social networking images

• The social networking icons in the top (auxiliary) navigation are also defined in a content record

• To change, edit the content record and change the links on the icons.

Page 42: Wcm4

Social networking images

Page 43: Wcm4

Social networking images

Page 44: Wcm4

Social networking images

Page 45: Wcm4

Welcome banner

• You change the home page banner by editing the reference in the CSS.

• And change the background image to your banner

• Or you can simply swap the existing background image for the new image

Page 46: Wcm4

Welcome banner

Page 47: Wcm4

Welcome banner

Page 48: Wcm4

Welcome banner

Page 49: Wcm4

Welcome banner

Page 50: Wcm4

Favicon

• The favicon is the little icon that displays next to the website in your bookmarks

• create an icon sized either 32x32 or 64x64 pixels and name it Favicon.ico

• Then overwrite the original file

Page 51: Wcm4

Favicon

Page 52: Wcm4

Create the favicon

Page 53: Wcm4

Create the favicon

Page 54: Wcm4

Copyright Statement

From Net\Templates\MasterPages, edit yourwebsite’s master page. Scroll to near the bottomof the page to find the copyright statement, andupdate it for your organization.

Page 55: Wcm4

Copyright Statement

Page 56: Wcm4

Copyright Statement

Page 57: Wcm4

Objectives

1. Create a new website2. Themes3. Customising a theme4. Logo, banner and icons5. Colour and CSS6. Content – content layout and zone properties

Page 58: Wcm4

Changing theme colours

The next step is to change the colours.

You make these changes both in CSS and inimages

• Sprite colours• CSS colours

Page 59: Wcm4

Sprite colours

• A sprite is a single image that combines several frequently used images into one image or file.

• Few http requests• Page loads faster

Page 60: Wcm4

Sprite colours

Page 61: Wcm4

Sprite colours

Page 62: Wcm4

Sprite colours

Page 63: Wcm4

Sprite colours

Page 64: Wcm4

Sprite colours

Page 65: Wcm4

Sprite colours

Page 66: Wcm4

Sprite colours

Page 67: Wcm4

Sprite colours

Page 68: Wcm4

Sprite colours

Page 69: Wcm4

CSS colours

• Change presentation properties for border, background and color

• Adjust positioning• Navigation look and feel

Page 70: Wcm4

CSS colours

• Change font to Arial• Change links to colour blue• Change background to white

Further• Change navigation style• Move banner up

Page 71: Wcm4

CSS colours

#MainHtml {background-color: white;

}

Page 72: Wcm4

CSS colours

#MainHtml {background-color: white;

}body {font-size: 12px;

}

Page 73: Wcm4

CSS colours

#MainHtml {background-color: white;

}body {font-size: 12px;

}a {color: navy;

}

Page 74: Wcm4

CSS colours

#MainHtml {background-color: white;

}body {font-size: 12px;

}a {color: #217AA4;

}

Page 75: Wcm4

CSS colours#MainHtml {

background-color: white;}body {

font-size: 12px;}a {

color: #217AA4;}.TitleBarCaption, .PanelTitle {

font-family: "Times New Roman";color: #217AA4;

}

Page 76: Wcm4

CSS colours

Page 77: Wcm4

CSS colours

Page 78: Wcm4

CSS navigation

Page 79: Wcm4

Objectives

1. Create a new website2. Themes3. Customising a theme4. Logo, banner and icons5. Color and CSS6. Content – content layout and zone properties

Page 80: Wcm4

Changing theme home pages

The Member site uses a pair of home pages • One that appears to guests (unauthenticated

view) and • Another that appears to those who have signed

in (authenticated view). • You can change one or both of them, or drop

one entirely (have one home page appear to all).

Page 81: Wcm4

The Content

Page 82: Wcm4

The Content

Page 83: Wcm4

The Content

Page 84: Wcm4

The Content

Page 85: Wcm4

Remove unwanted content

Page 86: Wcm4

Remove unwanted content

Page 87: Wcm4

Remove unwanted content

Page 88: Wcm4

Remove unwanted content

Page 89: Wcm4

Change the layout

Page 90: Wcm4

Change the layout

Page 91: Wcm4

Change the layout

Page 92: Wcm4

Change the layout

Page 93: Wcm4

Change the layout

Page 94: Wcm4

Add new content

Page 95: Wcm4

Live

Page 96: Wcm4

More complex changes

• Design your own theme• Hand built pages• Skins (navigation)• Special effects - animate / Fade

Page 97: Wcm4

Tools

Code• Text editor • Code inspection (Firebug or Chrome)Graphics / color• Photoshop Elements (GIMP free)• Color picker (www.colorzilla.com)• Favicon (www.favicon.co.uk)

Page 98: Wcm4

Further reading

Docs.imis.com• http://docs.imis.com/15.2/#!ipartsites.htmSources for HTML and CSS• w3schools.comSlides• Slideshare.net