White Paper April Using Cascading Style Sheets (CSS) with AR System 6.x

Size: px
Start display at page:

Download "White Paper April Using Cascading Style Sheets (CSS) with AR System 6.x"

Transcription

1 April 2004 Using Cascading Style Sheets (CSS) with AR System 6.x

2 Copyright 2004 BMC Software, Inc. All rights reserved. Remedy, the Remedy logo, all other Remedy product or service names, BMC Software, the BMC Software logos, and all other BMC Software product or service names, are registered trademarks or trademarks of BMC Software, Inc. All other trademarks belong to their respective companies. Remedy, a BMC Software company, considers information included in this documentation to be proprietary and confidential. Your use of this information is subject to the terms and conditions of the applicable end user license agreement or nondisclosure agreement for the product and the proprietary and restricted rights notices included in this documentation. Contacting Remedy If you have comments or suggestions about this documentation, contact Information Development by at doc_feedback@remedy.com. This edition applies to version of the licensed program. Remedy, a BMC Software company

3 Using Cascading Style Sheets (CSS) with AR System 6.x This white paper describes how to use Cascading Style Sheets (CSS) with Remedy Action Request System (AR System ) web views to control aspects of a web view s appearance. It includes the following topics:! CSS in AR System 6.0 (page 4)! New CSS styles in AR System (page 19)! AR System form with sample styles (page 26) Using Cascading Style Sheets (CSS) with AR System 6.x! 3

4 CSS in AR System 6.0 The styles of AR System elements on the web are defined using Cascading Style Sheets (CSS). The CSS standard provides a means for web authors to separate the appearance of web pages from their content. With CSS, you can have a consistent look across your web site by linking to the same CSS file in all your web pages. CSS also allows you to control display attributes that you cannot set from Remedy Administrator. For example, Remedy Administrator does not offer a way to change the background color of a trim box, but CSS does. For more information about using CSS with AR System forms and applications, see the Developing AR System Applications: Advanced guide. For more information about style sheets in general, see the World Wide Web Consortium (W3C) style sheet pages at Important: Before customizing any style sheets, make a backup copy of the files you want to customize so that you can restore the original values in case your customizations do not work. CSS class files In AR System, each element s style is controlled by one or more CSS classes, which are defined in a CSS file. The CSS files are located under the shared/ javascript directory of the mid tier, and are listed in the following tables. Internet Explorer CSS class file Platform Notes ar_sys_ie.css Windows Applies to normal text size. ar_sys_ie_1.css Windows Applies to larger text size. ar_sys_ie_2.css Windows Applies to largest text size. 4 "Using Cascading Style Sheets (CSS) with AR System 6.x

5 Using Cascading Style Sheets (CSS) with AR System 6.x Netscape/Mozilla CSS class file Platform Notes ar_sys_nn7.css Japanese Chinese Configuration Tool All CSS class file Platform Notes ar_sys_ja.css Windows Controls Japanese fonts only. CSS class file Platform Notes ar_sys_zh.css Windows Controls Chinese fonts in Internet Explorer browsers. ar_sys_zh_nn.css All Controls Chinese fonts in Netscape/Mozilla browsers. CSS class file Platform Notes config.css All Controls styles in the Remedy Configuration Tool. CSS in AR System 6.0! 5

6 Custom-defined CSS in AR System There are three ways to customize your CSS in the AR System.! You can modify the CSS files that come with the AR System. The changes that you make will affect all applications that are deployed on that mid tier only. We do not recommend this approach because your changes will be lost during an upgrade.! You can embed the style rules directly in your web view. To do this, open the web view in Remedy Administrator and select the source view. Search for </arsys:open_services>. Then, locate the endspan tag following that, as shown in the following example: </arsys:open_services> <! METADATA TYPE= DesignerControl endspan--> <STYLE>.Header1 {color: red;} </STYLE> This option is sufficient if you plan to make changes to only a few CSS classes in a single view.! Or (the preferred option), you can use an application-level style sheet that you define for your browser (for example, application_ie.css for Internet Explorer or application_nn7.css for Netscape). Then, deploy that style sheet as part of your application resources. For more information about deploying AR System applications to the web, see the Developing AR System Applications: Advanced guide. Application-level versus field-level style control If you want to change the style for a CSS class, you can edit the declarations (properties and values). The following CSS class, ControlStyle, includes a background property with a value of #FFA07A that specifies the background color..controlstyle {background: #FFA07A;} This change will be applied to all button fields in your application. To apply this change to a specific button field, you must supply the field ID also, as shown in the following example. #DF ControlStyle {background: #FFA07A;} 6 "Using Cascading Style Sheets (CSS) with AR System 6.x

7 Using Cascading Style Sheets (CSS) with AR System 6.x In HTML, each field instance has a unique ID (although some common buttons, like Save, have identical IDs across an application). This ID consists of the letters DF, followed by the field ID number. CSS allows you to select individual elements by putting the # sign in front the ID. Types of CSS customizations Changing the style based on AR System field types All AR System field types have an associated CSS class. The following table shows the mapping between simple AR System field types and CSS classes. Most of the CSS classes listed in the following table apply only to the data portion of the field. For information about specifying styles for field labels, see Changing the styles of logical fonts on page 9. AR System field type Character Currency Date Date/Time Diary Integer Real Number Decimal Drop-down Radio Button Check Box Time Button Trim Text Trim Box CSS class EditFieldStyle EditFieldStyleCurr EditFieldStyle EditFieldStyle EditFieldStyle EditFieldStyle EditFieldStyle EditFieldStyleDec DropDownStyle RadioButtonStyle DropDownStyle EditFieldStyle ControlStyle TrimTextStyle TrimShapeStyle CSS in AR System 6.0! 7

8 Examples of CSS classes applied to field types The following table shows some examples of CSS classes applied to specific field types. Note: The attributes in the following examples could also be included in an an application-level style sheet. When an application style sheet is used, it is always applied in addition to, and after, the default style sheet. If any of the attributes from the default style sheet are also specified in the application style sheet, the default style sheet declarations will remain in effect; they are not redeclared if an application style sheet is used. CSS class Sample display.editfieldstyle {letterspacing: 0.5em;}.EditFieldStyleCurr {word-spacing: 0.5em;}.EditFieldStyleDec {color: blue;}.controlstyle {background: #FFA07A;}.DropDownStyle {fontstyle: italic}.radiobuttonstyle {color: red;} 8 "Using Cascading Style Sheets (CSS) with AR System 6.x

9 Using Cascading Style Sheets (CSS) with AR System 6.x CSS class Sample display.trimshapestyle { background: #F0F8FF;}.TrimTextStyle {color: #336633;} Changing the styles of logical fonts AR System has 11 logical fonts, which are used primarily for the label portion of a field:! Editor! Header1! PushButton! Header2! RadioButton! Header3! Optional! Note! Required! Detail! System These fonts are defined using CSS styles. In CSS terms, a font is a particular combination of font family, size, style, and weight. In traditional printing terms, it is a combination of typeface family, style, and size. You can specify the font for the label or text portion of an editable field using Remedy Administrator under the Color/Font tab. The default label/text font for a field is based on its entry mode. If a field is defined as being a required field, its default font will be Required; otherwise it will be Optional. For system-level fields such as Request ID, the default font is System, and for display-only fields, it is Display. CSS in AR System 6.0! 9

10 You can modify the style of any AR System font in the style sheet. For example, you can specify that all required fields be blue by adding this statement to the style sheet:.required { color: #0000CD; } Fields with the class Required will appear in blue, as shown. Note: If you uncheck Default Label Text Color, and put in a specific color for a field, that color will override the blue color specified in the style sheet. For the data portion of a field, a logical font can overwrite the CSS style defined for the type of field. For instance, if in the Color/Font tab you specify the font to be Required for the data portion of the Real Number field and add the following two statements in your application CSS file, the resulting text color will be blue (#0000CD)..Required { color: #0000CD; }.EditFieldStyle {color: #CC0000; } In this example, the font for the data portion of the Real Number field is set to the CSS class Required, whereas the font for the Integer field is set to default (redefined as #CC0000, which is red). The data portion of the Real Number field appears in blue because the logical font (Required) overwrites the CSS style for the type of field (EditFieldStyle). Warning: When changing logical fonts, do not increase the font size. The scaling factor of fields in the web view is tied to the default font sizes, so if you increase them you might have overlapping fields. If you increase the bounding box of the field by dragging the blue box around the field in Remedy Administrator, then you should not have any overlap problems. 10 "Using Cascading Style Sheets (CSS) with AR System 6.x

11 Using Cascading Style Sheets (CSS) with AR System 6.x Controlling display attributes that cannot be set using Remedy Administrator With CSS, you can set many more display attributes than you can using Remedy Administrator. For example, you can set background and border color of trim box fields, as shown:.trimshapestyle { background: #F0F8FF; border: 1px solid #FFA500;} Background color Border style and color You can also change the style of buttons to have a flat look by changing the border..controlstyle {border: 1px solid Gray; background: #FFA07A; } Overwriting styles for table fields The following table maps the relationship between CSS classes and the components of an AR System table field. CSS class TableDataStyle TablePrimarySelectedRowStyle TableSecondarySelectedRowStyle TableHeaderInformationStyle TableColumnHeaderStyle Defines the style for All data rows in a table Primary selected row Secondary selected row (in multiple selections) Header text at the upper left area of the table field Header for table columns CSS in AR System 6.0! 11

12 CSS class TableHeaderStatusChunkStyle TableFooterSelectStyle Defines the style for Chunking information header at the upper right corner of the table field Style for Select All and Deselect All links in the table footer Note: TablePrimarySelectedRowStyle, TableSecondarySelectedRowStyle, and TableUnselectedRowStyle will overwrite TableDataStyle. Some examples of these table styles follow..tableheaderinformationstyle.tableheaderinformationstyle {color: green;} Sets the color of the text in the table header information. Sets the color of the chunking information..tableheaderstatuschunkstyle.tableheaderstatuschunkstyle {color: blue;} 12 "Using Cascading Style Sheets (CSS) with AR System 6.x

13 Using Cascading Style Sheets (CSS) with AR System 6.x.TableFooterStyle.TableFooterStyle {background: #FFA07A;} Sets the color of the table footer background..tablefooterselectstyle.tablefooterselectstyle {color: #FFA07A;} Sets the color of the selection links..tablefooterbuttonstyle.tablefooterbuttonstyle {background: #FFA07A;} Sets the background color of the table footer buttons..tablecolumnheaderstyle.tablecolumnheaderstyle TH {background: #B0C4DE;} Sets the background color of the table header row. CSS in AR System 6.0! 13

14 .TableStyle.TableStyle {border: blue solid 1px;} Sets the color of the table border..tabledatastyle.tabledatastyle {background: #B0C4DE;} Sets the background color for table rows..tableprimaryselectedrowstyle.tableprimaryselectedrowstyle {background: #B0C4DE;} Sets the background color of the primary selection row..tablesecondaryselectedrowstyle.tablesecondaryselectedrowstyle {background: # B0C4DE ;} In this example, the second row assumes the attributes of the TableSecondarySelectedRowStyle class. Sets the background color of the secondary selection row. 14 "Using Cascading Style Sheets (CSS) with AR System 6.x

15 Using Cascading Style Sheets (CSS) with AR System 6.x Overwriting styles for page fields The following table maps the relationship between CSS classes and the components of an AR System page field. CSS class PageTabStyle PageTabStyle A PageTabStyleSelected PageTabStyleUnselected PageStyle Defines the style for: All page tabs The label on a page tab Selected page tab Unselected page tab Body of page field PageTabStyleSelected and PageTabStyleUnselected will overwrite PageTabStyle. All CSS styles for a page field are tightly integrated to achieve the desired look; therefore, we do not recommend changing attributes such as border style and thickness. Some examples of styles applied to page fields follow:.pagetabstyle.pagetabstyle {letter-spacing: 0.5em } Sets the text style for all tabs in a page field..pagetabstyle A.PageTabStyle A {color: blue;} Sets the text color for all tabs in a page field. CSS in AR System 6.0! 15

16 .PageTabStyleSelected.PageTabStyleSelected {background: #CCCCFF} Sets the background color of the selected tab in a page field..pagetabstyleunselected.pagetabstyleunselected {background: #CCCCFF} Sets the background color for unselected tabs in a page field..pagestyle.pagestyle {background: #CCCCFF} Sets the background color of the page field. 16 "Using Cascading Style Sheets (CSS) with AR System 6.x

17 Using Cascading Style Sheets (CSS) with AR System 6.x Overwriting styles for attachment fields The following table maps the relationship between CSS classes and the components of an AR System attachment field. There is currently less control of these than there is of regular table fields. CSS class AttachmentListTableStyle AttachmentHeaderStyle AttachmentRowStyle AttachmentFooterStyle Defines the style for: Attachment table Attachment table header Rows inside the attachment table Attachment table footer Some examples of styles applied to attachment fields follow:.attachmentlisttablestyle.attachmentlisttablestyle {background-color: blue;} In this example, only a little bit of the table shows through behind the header and the rows. Sets the background color of an attachment field..attachmentheaderstyle.attachmentheaderstyle {background-color: blue;} Sets the background color for the attachment field header. CSS in AR System 6.0! 17

18 .AttachmentRowStyle.AttachmentRowStyle {background-color: #CCCCCC;} Sets the background color for the rows in the attachment field..attachmentfooterstyle.attachmentfooterstyle {background-color: #FFA07A;} Sets the background color in the attachment field footer..attachmentfooterstyle INPUT.AttachmentFooterStyle INPUT {background-color: #FFA07A;} The following example shows an extra rule with a contextual selector. With the contextual selector included, any input element that is within an element that has AttachmentFooterStyle should follow the specified style rule. Uses a contextual selector to set a specific background color for the INPUT elements in the attachment field footer. 18 "Using Cascading Style Sheets (CSS) with AR System 6.x

19 New CSS styles in AR System Using Cascading Style Sheets (CSS) with AR System 6.x In AR System 6.0.1, new CSS classes have been added to provide more control over specific elements on a form. Menu styles The styles of AR System menus are controlled by three CSS classes:! MenuStyle controls the style of the menu itself, such as the border attributes, font attributes, and background attributes..menustyle { border: 1px solid #717375; border-collapse: collapse; cursor: default; background-color: #fafafa; font-family: MS Sans Serif ; font-size: 8pt; }! MenuFocusStyle controls the style of the menu item that currently has focus (with either the mouse cursor or the keyboard)..menufocusstyle { background-color: #d1f291; font-weight: normal; }! MenuDivStyle is used internally by the system to display the menu..menudivstyle {visibility: hidden; position: absolute; z-index: ;} Note: Do not modify the MenuDivStyle class. The following figure shows a menu displayed using the AR System style sheet: New CSS styles in AR System 6.0.1! 19

20 Here is the same menu using a custom style sheet: This example uses the following classes, properties, and values: Dialog box styles.menustyle { border: 1px solid blue; border-collapse: collapse; cursor: default; background-color: #DAD9FF; font-family: Arial, Helvetica, sans-serif; font-size:10pt; color: blue; }.MenuStyle TD { border: 1px solid blue; }.MenuFocusStyle { background: #A7A3FD url(menuhighlight.gif) repeat-x; } The menuhighlight.gif file is a 1 x 23-pixel image located in the same directory as the CSS file. It provides the gradient effect to the highlighted menu item. In the previous example, the background color is set to the value of the bottom color of the gradient image. This setting eliminates the need to create an image that matches the menu height exactly, because the latter can change depending on the font size. The image for the submenu arrow can also be changed, but not with CSS. That image is called menu_arrow.gif and is located under the <Mid- Tier_install_directory>/apps/shared/images. Note: Any changes to menu_arrow.gif will affect menus in all applications deployed through the mid tier. Note: The menus for drop-down list fields are controlled by the existing DropDownStyle class. This class is affected by the data portion of the field. You can control body styles (background, font, and so on) and button styles for various types of dialog boxes using CSS classes. 20 "Using Cascading Style Sheets (CSS) with AR System 6.x

21 Using Cascading Style Sheets (CSS) with AR System 6.x Body styles DialogBody is the parent class that defines the attributes of all system dialog boxes. Use the following classes to control the appearance of various dialog boxes on an individual basis:! ErrorMsgBody controls the appearance of active link error message dialog boxes. This class is applicable only to Internet Explorer browsers.! WarningMsgBody controls the appearance of active link warning message dialog boxes. This class is applicable only to Internet Explorer browsers.! NoteMsgBody controls the appearance of active link note message dialog boxes. This class is applicable only to Internet Explorer browsers.! SelectDialogBody controls the appearance of selection list dialog boxes. See Selection list style on page 22 for more information about selection lists.! DateTimeDialogBody controls the appearance of date/time calendar popup and date picker dialog boxes.! AttachDialogBody controls the appearance of Attachment dialog boxes.! EditDialogBody controls the appearance of text editor dialog boxes for a character and diary fields.! CurrencyDialogBody controls the appearance of Currency dialog boxes.! ConfirmDialogBody controls the appearance of system-generated Overwrite Changes and Save Request confirmation dialog boxes. This class is applicable only to Internet Explorer browsers.! StatusHistoryDialogBody controls the appearance of Status History dialog boxes. Button styles DialogButton is the parent class that defines the attributes of all buttons in system-generated dialog boxes. Use the following classes to control the appearance of various buttons on an individual basis:! DialogOKButton controls the appearance of OK buttons in systemgenerated dialog boxes.! DialogYesButton controls the appearance of Yes buttons in systemgenerated dialog boxes.! DialogNoButton controls the appearance of No buttons in system-generated dialog boxes.! DialogCancelButton controls the appearance of Cancel buttons in systemgenerated dialog boxes. New CSS styles in AR System 6.0.1! 21

22 ! DialogCloseButton controls the appearance of Close buttons in systemgenerated dialog boxes.! DialogBrowseButton controls the appearance of Browse buttons in systemgenerated dialog boxes. Note: The DialogBrowseButton style is currently used by Attachment dialog boxes only. It affects the style of both the input box and the Browse button. You can only change the border of the Browse button. Selection list style You can control background and font styles for AR System selection list using the following CSS classes:! SelectDialogBody sets the properties for the entire selection list window. Typically, the color you set using this class is ineffective, because the list and footer take up the most, if not all, of the window. But if background color is not set for List and Footer, they take their background from this rule.! SelectDialogList sets the background color for the list part only.! SelectDialogList PRE sets the font family and size of list items. The browser s default fixed-width font is used if Font Family is not declared. If the Font Family is declared, designate only fixed width fonts to maintain column alignment.! SelectDialogFooter sets the background color for the footer, where control buttons are. Note: To change the style of the footer buttons, create an extra CSS rule with the contextual selector.selectdialogfooter BUTTON. 22 "Using Cascading Style Sheets (CSS) with AR System 6.x

23 Using Cascading Style Sheets (CSS) with AR System 6.x Here is an example of an AR System selection list. Table styles You can apply alternating row styles to table fields using the TableAlternateRowStyle class. By setting the TableAlternateRowStyle class, alternating rows of the table field assume the attributes of that class, as shown in the following illustration. The existing.tabledatastyle class is used for the other rows. Background color for alternating table rows For the cleanest look, the alternating row style is best used without top and bottom borders for all rows: Alternating table rows with bottom border removed New CSS styles in AR System 6.0.1! 23

24 By default, the left and top borders are turned off. To turn off the bottom border for all rows, use the TableDataStyle class with the TD selector:.tabledatastyle TD { border-bottom: 0 } Alternating row colors for table fields In AR System 6.0.1, table fields can have an alternating row style. To enable it, use the following CSS class:.tablealternaterowstyle { background-color: lightgrey} Alternating rows of the table field will assume the attributes of the TableAlternateRowStyle class, as shown in the following figure: Background color for alternating table rows For the cleanest look, the alternating row style is best used without top and bottom borders for all rows: Alternating table rows with bottom borders removed By default, the left and top borders are turned off. To turn off the bottom border for all rows, use the TableDataStyle class with the TD selector:.tabledatastyle TD { border-bottom: 0; } Styles for static text in dialog boxes When setting style properties for static text in dialog boxes, you can use the following classes to set the font style, color, size, and weight. 24 "Using Cascading Style Sheets (CSS) with AR System 6.x

25 Using Cascading Style Sheets (CSS) with AR System 6.x Font style and color Use the.editdialogbody class to set the font style and color:.editdialogbody { font-family: Arial, Helvetica, sans-serif; background-color: blue; border: 5px solid green; } Font size and weight To set the font size and weight, you must create another rule and add the TD selector, because the static text is treated as table text:.editdialogbody TD {font-size: 26pt; font-weight: bold; } Similarly, use the following classes to control attachment and date/time dialog boxes. Font color and style.attachdialogbody.datetimedialogbody Font size and weight.attachdialogbody TD.DateTimeDialogBody TD New CSS styles in AR System 6.0.1! 25

26 AR System form with sample styles The following figure shows an AR System form with examples of the style options available. 26 "Using Cascading Style Sheets (CSS) with AR System 6.x

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

USER GUIDE MADCAP FLARE Tables

USER GUIDE MADCAP FLARE Tables USER GUIDE MADCAP FLARE 2018 Tables Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Layout with Layers and CSS

Layout with Layers and CSS Layout with Layers and CSS Today we're going to make a Web site layout. Preparatory Step 1. Inside your folder create a new folder and name it layout. 2. Inside the layout folder create a new folder and

More information

CSS: The Basics CISC 282 September 20, 2014

CSS: The Basics CISC 282 September 20, 2014 CSS: The Basics CISC 282 September 20, 2014 Style Sheets System for defining a document's style Used in many contexts Desktop publishing Markup languages Cascading Style Sheets (CSS) Style sheets for HTML

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Cascading Style Sheets (CSS)

Cascading Style Sheets (CSS) Cascading Style Sheets (CSS) Mendel Rosenblum 1 Driving problem behind CSS What font type and size does introduction generate? Answer: Some default from the browser (HTML tells what browser how)

More information

Page Layout Using Tables

Page Layout Using Tables This section describes various options for page layout using tables. Page Layout Using Tables Introduction HTML was originally designed to layout basic office documents such as memos and business reports,

More information

Taking Fireworks Template and Applying it to Dreamweaver

Taking Fireworks Template and Applying it to Dreamweaver Taking Fireworks Template and Applying it to Dreamweaver Part 1: Define a New Site in Dreamweaver The first step to creating a site in Dreamweaver CS4 is to Define a New Site. The object is to recreate

More information

How to create and edit a CSS rule

How to create and edit a CSS rule Adobe Dreamweaver CS6 Project 3 guide How to create and edit a CSS rule You can create and edit a CSS rule in two locations: the Properties panel and the CSS Styles panel. When you apply CSS styles to

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Style Sheet Reference Guide

Style Sheet Reference Guide Version 8 Style Sheet Reference Guide For Password Center Portals 2301 Armstrong St, Suite 2111, Livermore CA, 94551 Tel: 925.371.3000 Fax: 925.371.3001 http://www.imanami.com This publication applies

More information

Dreamweaver 8. Project 5. Templates and Style Sheets

Dreamweaver 8. Project 5. Templates and Style Sheets Dreamweaver 8 Project 5 Templates and Style Sheets Starting Dreamweaver and Opening the Colorado Parks Web Site Click the Start button on the Windows taskbar Point to All Programs on the Start menu, point

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

Chapter 7 Typography, Style Sheets, and Color. Mrs. Johnson

Chapter 7 Typography, Style Sheets, and Color. Mrs. Johnson Chapter 7 Typography, Style Sheets, and Color Mrs. Johnson Typography Typography refers to the arrangement, shape, size, style, and weight of text. Affects the navigation and usability of a web site and

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

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004

USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 Introduction This document assumes that you are familiar with the use of a computer keyboard and mouse, have a working knowledge of Microsoft

More information

McMaster Brand Standard for Websites

McMaster Brand Standard for Websites McMaster University s policy calls for all university websites to follow its brand standard. McMaster websites share common elements, presentation and behavior and a consistent design, enabling visitors

More information

WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5

WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 3 Key Concepts 1 LEARNING OUTCOMES In this chapter, you will learn how to... Describe the evolution of style sheets from print media to the Web List

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

CSS Cascading Style Sheets

CSS Cascading Style Sheets CSS Cascading Style Sheets site root index.html about.html services.html stylesheet.css images boris.jpg Types of CSS External Internal Inline External CSS An external style sheet is a text document with

More information

Assignments (4) Assessment as per Schedule (2)

Assignments (4) Assessment as per Schedule (2) Specification (6) Readability (4) Assignments (4) Assessment as per Schedule (2) Oral (4) Total (20) Sign of Faculty Assignment No. 02 Date of Performance:. Title: To apply various CSS properties like

More information

Style Sheet Reference Guide

Style Sheet Reference Guide Version 8 Style Sheet Reference Guide For Self-Service Portal 2301 Armstrong St, Suite 2111, Livermore CA, 94551 Tel: 925.371.3000 Fax: 925.371.3001 http://www.imanami.com This publication applies to Imanami

More information

Additional catalogs display. Customize text size and colors.

Additional catalogs display. Customize text size and colors. Collapsible Skin The collapsible skin option displays the catalogs and categories in a collapsible format enabling enhanced navigation on Qnet. Categories can be expanded to view all of the sub categories

More information

Web Publishing Basics II

Web Publishing Basics II Web Publishing Basics II Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 Create a Site Definition... 3 The Dreamweaver CS4 Interface... 4 Panels are groups of icons

More information

Let s start with the document tree

Let s start with the document tree CSS INHERITANCE Let s start with the document tree Before we explore inheritance, we need to understand the document tree. All HTML documents are trees. Document trees are made from HTML elements. The

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Dear Candidate, Thank you, Adobe Education

Dear Candidate, Thank you, Adobe Education Dear Candidate, In preparation for the Web Communication certification exam, we ve put together a set of practice materials and example exam items for you to review. What you ll find in this packet are:

More information

Layout and display. STILOG IST, all rights reserved

Layout and display. STILOG IST, all rights reserved 2 Table of Contents I. Main Window... 1 1. DEFINITION... 1 2. LIST OF WINDOW ELEMENTS... 1 Quick Access Bar... 1 Menu Bar... 1 Windows... 2 Status bar... 2 Pop-up menu... 4 II. Menu Bar... 5 1. DEFINITION...

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

Appendix D CSS Properties and Values

Appendix D CSS Properties and Values HTML Appendix D CSS Properties and Values This appendix provides a brief review of Cascading Style Sheets (CSS) concepts and terminology, and lists CSS level 1 and 2 properties and values supported by

More information

POS Designer Utility

POS Designer Utility POS Designer Utility POS Designer Utility 01/15/2015 User Reference Manual Copyright 2012-2015 by Celerant Technology Corp. All rights reserved worldwide. This manual, as well as the software described

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style precedence and style inheritance Understand the CSS use

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes USER GUIDE MADCAP FLARE 2017 r3 QR Codes Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

By completing this practical, the students will learn how to accomplish the following tasks:

By completing this practical, the students will learn how to accomplish the following tasks: By completing this practical, the students will learn how to accomplish the following tasks: Learn different ways by which styles that enable you to customize HTML elements and precisely control the formatting

More information

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

Adding CSS to your HTML

Adding CSS to your HTML Adding CSS to your HTML Lecture 3 CGS 3066 Fall 2016 September 27, 2016 Making your document pretty CSS is used to add presentation to the HTML document. We have seen 3 ways of adding CSS. In this lecture,

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2)

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Web Development & Design Foundations with HTML5 Ninth Edition Chapter 3 Configuring Color and Text with CSS Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

More information

Reading 2.2 Cascading Style Sheets

Reading 2.2 Cascading Style Sheets Reading 2.2 Cascading Style Sheets By Multiple authors, see citation after each section What is Cascading Style Sheets (CSS)? Cascading Style Sheets (CSS) is a style sheet language used for describing

More information

Web Development & Design Foundations with HTML5

Web Development & Design Foundations with HTML5 Web Development & Design Foundations with HTML5 KEY CONCEPTS Copyright Terry Felke-Morris 1 Learning Outcomes In this chapter, you will learn how to... Describe the evolution of style sheets from print

More information

Web Development & Design Foundations with HTML5

Web Development & Design Foundations with HTML5 1 Web Development & Design Foundations with HTML5 CHAPTER 3 CSS BASICS Copyright Terry Felke-Morris 2 Learning Outcomes In this chapter, you will learn how to... Describe the evolution of style sheets

More information

Lesson 5 Introduction to Cascading Style Sheets

Lesson 5 Introduction to Cascading Style Sheets Introduction to Cascading Style Sheets HTML and JavaScript BASICS, 4 th Edition 1 Objectives Create a Cascading Style Sheet. Control hyperlink behavior with CSS. Create style classes. Share style classes

More information

To link to an external stylesheet, the link element is placed within the head of the html page:

To link to an external stylesheet, the link element is placed within the head of the html page: CSS Basics An external style sheet is simply a text file (use BBEdit or Textwrangler) containing style rules, saved with the.css extension. It s best practice to keep style sheets for a site grouped within

More information

Introduction to Computer Science Web Development

Introduction to Computer Science Web Development Introduction to Computer Science Web Development Flavio Esposito http://cs.slu.edu/~esposito/teaching/1080/ Lecture 9 Lecture Outline Text Styling Some useful CSS properties The Box Model essential to

More information

CSS مفاهیم ساختار و اصول استفاده و به کارگیری

CSS مفاهیم ساختار و اصول استفاده و به کارگیری CSS مفاهیم ساختار و اصول استفاده و به کارگیری Cascading Style Sheets A Cascading Style Sheet (CSS) describes the appearance of an HTML page in a separate document : مسایای استفاده از CSS It lets you separate

More information

PUBLISHER SPECIFIC CSS RULES

PUBLISHER SPECIFIC CSS RULES PUBLISHER SPECIFIC CSS RULES Solita Oy Helsinki Tampere Oulu 26.1.2016 2 (24) Document History Version Date Author Description 0.1 August 17, 2015 J. Similä First draft 0.2 January 26, 2015 A. Autio Fixed

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS A CSS page layout uses the Cascading Style Sheets format, rather than traditional HTML tables or frames, to organize the content on a web page. The basic building block

More information

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 Chapter 12 12 Creating and Applying Cascading Style Sheets This chapter shows you how to use Cascading Style

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Introducing Cascading Style Sheets Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Cascading Style Sheet Basics CSS has many benefits: The pages look

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

COSC 2206 Internet Tools. CSS Cascading Style Sheets

COSC 2206 Internet Tools. CSS Cascading Style Sheets COSC 2206 Internet Tools CSS Cascading Style Sheets 1 W3C CSS Reference The official reference is here www.w3.org/style/css/ 2 W3C CSS Validator You can upload a CSS file and the validator will check it

More information

Lab Introduction to Cascading Style Sheets

Lab Introduction to Cascading Style Sheets Lab Introduction to Cascading Style Sheets For this laboratory you will need a basic text editor and a browser. In the labs, winedt or Notepad++ is recommended along with Firefox/Chrome For this activity,

More information

To illustrate how to set TAG styles the <body> and <h1> tags (for the BODY and the HEADING 1 styles) will be adjusted.

To illustrate how to set TAG styles the <body> and <h1> tags (for the BODY and the HEADING 1 styles) will be adjusted. Chapter The formatting of CSS pages is carried out by setting the required styles. There are four different types of styles: Class which are custom styles that you create. You did this in Chapter 12. Tag

More information

CSS. Lecture 16 COMPSCI 111/111G SS 2018

CSS. Lecture 16 COMPSCI 111/111G SS 2018 CSS Lecture 16 COMPSCI 111/111G SS 2018 No CSS Styles A style changes the way the HTML code is displayed Same page displayed using different styles http://csszengarden.com Same page with a style sheet

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

Table of Contents 1-4. User Guide 5. Getting Started 6. Report Portal 6. Creating Your First Report Previewing Reports 11-13

Table of Contents 1-4. User Guide 5. Getting Started 6. Report Portal 6. Creating Your First Report Previewing Reports 11-13 Table of Contents Table of Contents 1-4 User Guide 5 Getting Started 6 Report Portal 6 Creating Your First Report 6-11 Previewing Reports 11-13 Previewing Reports in HTML5 Viewer 13-18 Report Concepts

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : 9A0-803 Title : Certified Dreamweaver 8 Developer Exam Version : DEMO 1 / 7 1. What area, in the Insert bar, is intended for customizing and organizing frequently used objects? A. Layout

More information

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Note: We skipped Study Guide 1. If you d like to review it, I place a copy here: https:// people.rit.edu/~nbbigm/studyguides/sg-1.docx

More information

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017 ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3 Created: 2/10/2017 Table of Contents ENGINEERING DATA HUB... 1 DESKTOP VIEW... 3 HEADER... 4 Logo... 5 Main Title... 6 User Menu... 7 Global

More information

In the early days of the Web, designers just had the original 91 HTML tags to work with.

In the early days of the Web, designers just had the original 91 HTML tags to work with. Web Design Lesson 4 Cascading Style Sheets In the early days of the Web, designers just had the original 91 HTML tags to work with. Using HTML, they could make headings, paragraphs, and basic text formatting,

More information

Table of Contents Chapter 9. Working with Cascading Style Sheets ... 1

Table of Contents Chapter 9. Working with Cascading Style Sheets ... 1 Table of Contents Chapter 9.... 1 Introduction... 1 Introducing Cascading Style Sheets... 2 Create CSS Styles... 2 Attribute Styles... 2 Style Types... 3 Creating a Web Page with a CSS Layout... 4 Create

More information

<style type="text/css"> <!-- body {font-family: Verdana, Arial, sans-serif} ***set font family for entire Web page***

<style type=text/css> <!-- body {font-family: Verdana, Arial, sans-serif} ***set font family for entire Web page*** Chapter 7 Using Advanced Cascading Style Sheets HTML is limited in its ability to define the appearance, or style, across one or mare Web pages. We use Cascading style sheets to accomplish this. Remember

More information

Zen Garden. CSS Zen Garden

Zen Garden. CSS Zen Garden CSS Patrick Behr CSS HTML = content CSS = display It s important to keep them separated Less code in your HTML Easy maintenance Allows for different mediums Desktop Mobile Print Braille Zen Garden CSS

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

H A N D B O O K. Design. Intrexx 7

H A N D B O O K. Design. Intrexx 7 H A N D B O O K Design Intrexx 7 Contents 1. Intrexx Design - An Overview... 6 2. The Layout Manager... 7 2.1. Templates... 8 2.2. Layout Wizard... 8 2.3. Published Layouts... 10 3. The Areas of the Design

More information

Diploma in Digital Applications Unit 5: Coding for the Web

Diploma in Digital Applications Unit 5: Coding for the Web Pearson Edexcel Level 2 Diploma in Digital Applications Unit 5: Coding for the Web 8 May 12 May 2017 Time: 2 hours 30 minutes Paper Reference DA205/01 You must have: A computer workstation, appropriate

More information

CSS Lecture 16 COMPSCI 111/111G SS 2018

CSS Lecture 16 COMPSCI 111/111G SS 2018 No CSS CSS Lecture 16 COMPSCI 111/111G SS 2018 Styles Astyle changes the way the HTML code is displayed Same page displayed using different styles Same page with a style sheet body font-family: sans-serif;

More information

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles Using Dreamweaver 6 So far these exercises have deliberately avoided using HTML s formatting options such as the FONT tag. This is because the basic formatting available in HTML has been made largely redundant

More information

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB!

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! CS 1033 Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 06: Introduction to KompoZer (Website Design - Part 3 of 3) Lab 6 Tutorial 1 In this lab we are going to learn

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Formatting Your Document University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Dreamweaver CS3 Lab 2

Dreamweaver CS3 Lab 2 Dreamweaver CS3 Lab 2 Using an External Style Sheet in Dreamweaver Creating the site definition First, we'll set up the site and define it so that Dreamweaver understands the site structure for your project.

More information

Chapter 13 Working with Styles

Chapter 13 Working with Styles Getting Started Guide Chapter 13 Working with Styles Introduction to Styles in OpenOffice.org OpenOffice.org Copyright This document is Copyright 2005 2008 by its contributors as listed in the section

More information

Contents. Group 2 Excel Handouts 2010

Contents. Group 2 Excel Handouts 2010 Contents Styles... 2 Conditional Formatting... 2 Create a New Rule... 4 Format as Table... 5 Create your own New Table Style... 8 Cell Styles... 9 New Cell Style... 10 Merge Styles... 10 Sparklines...

More information

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

READSPEAKER ENTERPRISE HIGHLIGHTING 2.5

READSPEAKER ENTERPRISE HIGHLIGHTING 2.5 READSPEAKER ENTERPRISE HIGHLIGHTING 2.5 Advanced Skinning Guide Introduction The graphical user interface of ReadSpeaker Enterprise Highlighting is built with standard web technologies, Hypertext Markup

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

Session 4. Style Sheets (CSS) Reading & References. A reference containing tables of CSS properties

Session 4. Style Sheets (CSS) Reading & References.   A reference containing tables of CSS properties Session 4 Style Sheets (CSS) 1 Reading Reading & References en.wikipedia.org/wiki/css Style Sheet Tutorials www.htmldog.com/guides/cssbeginner/ A reference containing tables of CSS properties web.simmons.edu/~grabiner/comm244/weekthree/css-basic-properties.html

More information

Tree and Data Grid for Micro Charts User Guide

Tree and Data Grid for Micro Charts User Guide COMPONENTS FOR XCELSIUS Tree and Data Grid for Micro Charts User Guide Version 1.1 Inovista Copyright 2009 All Rights Reserved Page 1 TABLE OF CONTENTS Components for Xcelsius... 1 Introduction... 4 Data

More information

Using CSS in Web Site Design

Using CSS in Web Site Design Question 1: What are some of the main CSS commands I should memorize? Answer 1: The most important part of understanding the CSS language is learning the basic structure and syntax so you can use the language

More information

TUTORIAL MADCAP FLARE Tripane and PDF

TUTORIAL MADCAP FLARE Tripane and PDF TUTORIAL MADCAP FLARE 2018 Tripane and PDF Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Web Design and Development Tutorial 03

Web Design and Development Tutorial 03 Table of Contents Web Design & Development - Tutorial 03... 2 Using and Applying CSS to XHTML... 2 Conventions... 2 What you need for this tutorial... 2 Common Terminology... 3 Parent / Child Elements...

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

Dreamweaver Tutorial #2

Dreamweaver Tutorial #2 Dreamweaver Tutorial #2 My web page II In this tutorial you will learn: how to use more advanced features for your web pages in Dreamweaver what Cascading Style Sheets (CSS) are and how to use these in

More information

Chapter 11: Going All Out with FrontPage

Chapter 11: Going All Out with FrontPage Chapter 11: Going All Out with FrontPage Creating a Product Page Easy Web Design project, Chapter 11 Most store sites need at least one product page. On the Notebooks Web site, the Products page is divided

More information

Client Interview. Interview Topics. Goals and Target Audience. Activity 3.1 Worksheet. Client Name:

Client Interview. Interview Topics. Goals and Target Audience. Activity 3.1 Worksheet. Client Name: Activity 3.1 Worksheet Client Interview Team Name: Date: Client Name: Interview Topics Goals and target audience Content Design requirements Delivery requirements Goals and Target Audience Identify three

More information

Creating Buttons and Pop-up Menus

Creating Buttons and Pop-up Menus Using Fireworks CHAPTER 12 Creating Buttons and Pop-up Menus 12 In Macromedia Fireworks 8 you can create a variety of JavaScript buttons and CSS or JavaScript pop-up menus, even if you know nothing about

More information

Web Recruitment Module Customisation

Web Recruitment Module Customisation Web Recruitment Module Customisation Introduction The People Inc. Web Recruitment add-on enables users to publish details of vacancies on their web site. This information is integrated seamlessly into

More information

Meijer.com Style Guide

Meijer.com Style Guide TABLE OF CONTENTS Meijer.com Style Guide John Green Information Architect November 14, 2011 1. LAYOUT... 2 1.1 PAGE LAYOUT... 2 1.1.1 Header... 2 1.1.2 Body / Content Area... 3 1.1.2.1 Top-Level Category

More information

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

More information

CSS: Cascading Style Sheets

CSS: Cascading Style Sheets CSS: Cascading Style Sheets Computer Science and Engineering College of Engineering The Ohio State University Lecture 13 Evolution of CSS MIME type: text/css CSS 1 ('96): early recognition of value CSS

More information

CSS Selectors. element selectors. .class selectors. #id selectors

CSS Selectors. element selectors. .class selectors. #id selectors CSS Selectors Patterns used to select elements to style. CSS selectors refer either to a class, an id, an HTML element, or some combination thereof, followed by a list of styling declarations. Selectors

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information