I need two demo sites. And I need them in two days

Size: px
Start display at page:

Download "I need two demo sites. And I need them in two days"

Transcription

1 smacss your up

2 @minamarkham

3

4 I need two demo sites And I need them in two days

5

6 CSS is easy.

7 hard CSS is easy.

8

9

10 CSS is bullshit.

11 Modular CSS

12 Focusing on creating healthy front-end modules instead of complete pages can help break complex page layouts into reusable solutions. - Dave Rupert

13

14

15 small pieces independent portable

16 Navigation, Tabs, Tables, Accordions, Lists, Dropdowns Pagination, Buttons, Labels, Inputs, Breadcrumbs, etc.

17 Tiny Bootstraps

18

19 Module, Pattern, Component, etc.

20 MVCSS, BEM, OOCSS, Suit, intuit.css

21 SMACSS

22 Scalable & Modular Architecture for CSS

23

24 Framework

25 categorization naming conventions depth of applicability

26 Categorization

27 base layout modules states themes

28 Base CSS resets, default styles (ex. html, body, h1, ul, etc)

29 Layout grid, major components ex. header, sidebar, nav

30 header content footer

31 header sidebar main content

32 Modules content patterns (ex. search-box, navigation, content-box)

33 navigation hero promo promo promo promo footer-text link-list

34 States module in various states

35

36

37 Themes module in various contexts

38 jessicahische.is

39 Naming Conventions

40 Base h1, h2, p, a, etc.

41 Layout.layout-*,.l-*

42 Module.<name>

43 Module.button

44 Sub-module.<name>-<state>

45 Sub-module.button-secondary

46 State.is-*

47 Theme.theme-*

48 Theme.theme-*

49 Depth of Applicability

50 header#top-menu > nav > ul > li a + div > ul > li > ul li:hover > a { }

51 10 generations!

52 ,,, Specificity = 0,1,1,11

53 header#top-menu > nav > ul > li a + div > ul > li > ul li:hover > a { }

54 header#top-menu > nav > ul > li a + div > ul > li > ul li:hover > a { }

55 .nav-subitem

56 ,,, Specificity = 0,0,1,0

57 .nav-subitem > a

58 ,,, Specificity = 0,0,1,1

59 child selectors class selectors naming conventions

60 Recap

61 categorize css rules meaningful names shallow selectors

62 add some

63 not SASS

64 Namespacing

65 the almighty ampersand

66 .btn { } &:hover { }

67 .btn:hover { }

68 .btn { } form & { }

69 form.btn { }

70 &- or &_

71 .btn { &-secondary { } &_secondary { } }

72 .btn-secondary { }.btn_secondary { }

73 nesting

74 inception rule

75 < 3 levels deep

76 .btn { &-secondary { &-icon { } } }

77 .btn-secondary { }.btn-secondary-icon { }

78 .btn { }.btn-large { }! <div class= btn btn-large >

79 @extend all the things!

80 .btn { }.btn-large {@extend.btn;}! <div class= btn-large >

81 %btn { }.btn-large {@extend %btn;}! <div class= btn-large >

82 don between modules

83 File Structure

84 @import

85 01. Utilities 'helpers'; Variables, mixins, functions, etc. Basically anything that doesn t output CSS by itself.

86 01. Utilities 02. Libraries "lib/font- "lib/pesticide"; Third-party libraries such as Susy, Font Awesome, Pesticide, and other plugins.

87 01. Utilities 02. Libraries 03. Base 'base'; CSS resets, Normalize, element styles

88 01. Utilities 02. Libraries 03. Base 04. Layout 'helpers'; Grid styles, major layout components (e.g. header, footer, sidebar, etc)

89 01. Utilities 02. Libraries 03. Base 04. Layout 05. Modules 'nav'; Individual modules, such as buttons, navigation, menus, etc.

90 01. Utilities 02. Libraries 03. Base 04. Layout 05. Modules 06. States 'touch'; Describe states of being, ex: active, collapsed or hidden

91 01. Utilities 02. Libraries 03. Base 04. Layout 05. Modules 06. States face utilities/_fonts.scss Web fonts imports & declarations

92 01. Utilities 02. Libraries 03. Base 04. Layout 05. Modules 06. States face 08. Print states/_print.scss Print styles

93 !important

94

95 shame.css

96 _shame.scss

97 01. Utilities 02. Libraries 03. Base 04. Layout 05. Modules 06. States face 08. Print 09. Shame _shame.scss because hacks happen

98 small and readable

99 mina.so/sassystarter

100 Theming

101 @mixin theme($name) $theme == $name } }

102 $theme: rebeccapurple

103 @include theme($rebeccapurple)

104

105 refactor all the things!

106

107 refactor all the things?

108 Baby steps

109 extract components create variables apply naming conventions nest

110 mina.so/smacss-menu

111 Before: 161 lines After: 97 lines

112 Recap

113 namespace with ampersands break modules into partials refactor in chunks

114 Resources

115 smacss.com

116 sass-lang.com

117 sassmeister.com

118 mina.so/smacss

one file so many sites

one file so many sites one file so many sites @minamarkham @gdidfw I build a lot of sites. One site to rule them all Theming Automation Documentation Theming File Structure @import 01. Utilities utilities/_index.scss

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

CSS Mapping in Advanced Mode for Events. Cvent, Inc 1765 Greensboro Station Place McLean, VA

CSS Mapping in Advanced Mode for Events. Cvent, Inc 1765 Greensboro Station Place McLean, VA CSS Mapping in Advanced Mode for Events 2018 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents CSS Mapping in Advanced Mode for Events... 3 Layout Options and Structure...

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

Scalable and Modular Architecture for CSS. The Workshop

Scalable and Modular Architecture for CSS. The Workshop Scalable and Modular Architecture for CSS The Workshop Tweet Use the hashtag #smacss Part 1: Overview CSS gone wild .block { display:block!important; }.inline { display:inline!important; }.hide { display:none!important;

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

Scalable and Modular Architecture for CSS. The Workshop

Scalable and Modular Architecture for CSS. The Workshop Scalable and Modular Architecture for CSS The Workshop Wifi SSID: ISITE Guest Password: DareToDelight! Ask Questions Get the most out of today Tweet Use the hashtag #smacss Part 1: Overview CSS gone wild

More information

Scalable and Modular Architecture for CSS. A flexible guide to developing sites small and large. by Jonathan Snook

Scalable and Modular Architecture for CSS. A flexible guide to developing sites small and large. by Jonathan Snook } Scalable and Modular Architecture for CSS A flexible guide to developing sites small and large. by Jonathan Snook Copyright 2012 Jonathan Snook All Rights Reserved SMACSS: Scalable and Modular Architecture

More information

Scalable and Modular Architecture for CSS. The Workshop

Scalable and Modular Architecture for CSS. The Workshop Scalable and Modular Architecture for CSS The Workshop Wifi SSID: GTRI-CONF Password: STINGER! Username: may-conf Password: Indiana298 Ask Questions Get the most out of today Tweet Use the hashtag #smacss

More information

Building beautiful websites with Bootstrap: A case study. by Michael Kennedy michaelckennedy.net

Building beautiful websites with Bootstrap: A case study. by Michael Kennedy michaelckennedy.net Building beautiful websites with Bootstrap: A case study by Michael Kennedy DevelopMentor @mkennedy michaelckennedy.net Objectives Learn what Bootstrap has to offer web developers Install and use Bootstrap

More information

Professional Course in Web Designing & Development 5-6 Months

Professional Course in Web Designing & Development 5-6 Months Professional Course in Web Designing & Development 5-6 Months BASIC HTML Basic HTML Tags Hyperlink Images Form Table CSS 2 Basic use of css Formatting the page with CSS Understanding DIV Make a simple

More information

WEB DESIGNING COURSE SYLLABUS

WEB DESIGNING COURSE SYLLABUS F.A. Computer Point #111 First Floor, Mujaddadi Estate/Prince Hotel Building, Opp: Okaz Complex, Mehdipatnam, Hyderabad, INDIA. Ph: +91 801 920 3411, +91 92900 93944 040 6662 6601 Website: www.facomputerpoint.com,

More information

Guidelines for doing the short exercises

Guidelines for doing the short exercises 1 Short exercises for Murach s HTML5 and CSS Guidelines for doing the short exercises Do the exercise steps in sequence. That way, you will work from the most important tasks to the least important. Feel

More information

Overview

Overview HTML4 & HTML5 Overview Basic Tags Elements Attributes Formatting Phrase Tags Meta Tags Comments Examples / Demos : Text Examples Headings Examples Links Examples Images Examples Lists Examples Tables Examples

More information

Important installation note Back to Top. Homepage Overview Back to Top

Important installation note Back to Top. Homepage Overview Back to Top Inspire: Important installation note Back to Top After installing and activating the theme, you need to navigate to Settings > Permalinks and click on the Save Changes button, even if you haven t made

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

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

About Codefrux While the current trends around the world are based on the internet, mobile and its applications, we try to make the most out of it. As for us, we are a well established IT professionals

More information

Custom Contact Forms Magento 2 Extension

Custom Contact Forms Magento 2 Extension Custom Contact Forms Magento 2 Extension User Manual This is the user manual of Magento 2 Custom Contact Forms v100.0.0 and was last updated on 29-06-2017. To see what this extension can do, go to the

More information

~Arwa Theme~ HTML5 & CSS3 Theme. By ActiveAxon

~Arwa Theme~ HTML5 & CSS3 Theme. By ActiveAxon ~Arwa Theme~ HTML5 & CSS3 Theme By ActiveAxon Thank you for purchasing our theme. If you have any questions that are beyond the scope of this help file, please feel free to email us via our user page contact

More information

DRY CSS A DON T-REPEAT-YOURSELF METHODOLOGY FOR CREATING EFFICIENT, UNIFIED AND SCALABLE STYLESHEETS

DRY CSS A DON T-REPEAT-YOURSELF METHODOLOGY FOR CREATING EFFICIENT, UNIFIED AND SCALABLE STYLESHEETS DRY CSS A DON T-REPEAT-YOURSELF METHODOLOGY FOR CREATING EFFICIENT, UNIFIED AND SCALABLE STYLESHEETS Jeremy Clarke http://jeremyclarke.org Download these slides: http://slideshare.net/jeremyclarke WHO

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

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme)

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme) Table of Contents A Quick Introduction to the Genesis Framework for WordPress Introduction to the Genesis Framework... 5 1.1 What's a Framework?... 5 1.2 What's a Child Theme?... 5 1.3 Theme Files... 5

More information

Sitecore Experience Accelerator 1.2 Rev: September 13, Sitecore Experience Accelerator 1.2

Sitecore Experience Accelerator 1.2 Rev: September 13, Sitecore Experience Accelerator 1.2 Sitecore Experience Accelerator 1.2 Rev: September 13, 2018 Sitecore Experience Accelerator 1.2 All the official Sitecore documentation. Page 1 of 81 Add, edit, and delete a rendering In the Experience

More information

Using CSS for page layout

Using CSS for page layout Using CSS for page layout Advantages: Greater typographic control Style is separate from structure Potentially smaller documents Easier site maintenance Increased page layout control Increased accessibility

More information

Sitecore Experience Accelerator 1.1 Rev: September 13, Sitecore Experience Accelerator 1.1

Sitecore Experience Accelerator 1.1 Rev: September 13, Sitecore Experience Accelerator 1.1 Sitecore Experience Accelerator 1.1 Rev: September 13, 2018 Sitecore Experience Accelerator 1.1 All the official Sitecore documentation. Page 1 of 52 Composite renderings A composite rendering consists

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

Build Powerful FrontEnd Workflows with PostCSS. Guide to writing/generating cutting edge CSS

Build Powerful FrontEnd Workflows with PostCSS. Guide to writing/generating cutting edge CSS Build Powerful FrontEnd Workflows with PostCSS Guide to writing/generating cutting edge CSS Key TakeAways PostCSS - Deep Dive plugins you can use custom plugins Workflow Essential Concepts Plugins to help

More information

CSS (Cascading Style Sheets)

CSS (Cascading Style Sheets) CSS (Cascading Style Sheets) CSS (Cascading Style Sheets) is a language used to describe the appearance and formatting of your HTML. It allows designers and users to create style sheets that define how

More information

Helpline No WhatsApp No.:

Helpline No WhatsApp No.: TRAINING BASKET QUALIFY FOR TOMORROW Helpline No. 9015887887 WhatsApp No.: 9899080002 Regd. Off. Plot No. A-40, Unit 301/302, Tower A, 3rd Floor I-Thum Tower Near Corenthum Tower, Sector-62, Noida - 201309

More information

Static Webpage Development

Static Webpage Development Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for PHP Given below is the brief description for the course you are looking for: - Static Webpage Development Introduction

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

OPTICS READYTHEME CUSTOMIZATION

OPTICS READYTHEME CUSTOMIZATION OPTICS READYTHEME CUSTOMIZATION Updated November 01, 2014 Installing the Optics ReadyTheme These instructions are for installing a ReadyTheme to a brand new store. If you have an existing store, please

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

Managing CSS Projects with ITCSS. DaFED Novi Sad, November 2014

Managing CSS Projects with ITCSS. DaFED Novi Sad, November 2014 Hello, Serbia! Managing CSS Projects with ITCSS DaFED Novi Sad, November 2014 #itcss Harry Roberts Consultant Front-end Architect. Products, long-running projects, large teams, big codebases. @csswizardry

More information

Create First Web Page With Bootstrap

Create First Web Page With Bootstrap Bootstrap : Responsive Design Create First Web Page With Bootstrap 1. Add the HTML5 doctype Bootstrap uses HTML elements and CSS properties that require the HTML5 doctype. 2. Bootstrap 3 is mobile-first

More information

Web development using PHP & MySQL with HTML5, CSS, JavaScript

Web development using PHP & MySQL with HTML5, CSS, JavaScript Web development using PHP & MySQL with HTML5, CSS, JavaScript Static Webpage Development Introduction to web Browser Website Webpage Content of webpage Static vs dynamic webpage Technologies to create

More information

OddsMatrix. Everything is possible. SASS Code Standards

OddsMatrix. Everything is possible. SASS Code Standards OddsMatrix Everything is possible. SASS Code Standards Why do we need SASS standards? Switching projects (when we need to, when we want to) Maximizing efficiency (finding stuff fast) Fast bug-fixing Fast

More information

CM Mega Menu Documentation

CM Mega Menu Documentation CM Mega Menu Documentation Release 1.0.0 CMExtension May 26, 2016 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 2 Installation 5 2.1 Upgrading................................................

More information

Css Manually Highlight Current Page Menu Using

Css Manually Highlight Current Page Menu Using Css Manually Highlight Current Page Menu Using I use a single page navigation menu for my Intranet site (offline) and want to And I can manually add the following CSS to each page to get them highlighted.

More information

Create the Left Navigation SSI Quick Guide

Create the Left Navigation SSI Quick Guide Create the Left Navigation SSI Quick Guide The WCMS system gives you the flexibility to assemble lists of existing content items manually to create the Left Navigation. The Server Side Include [WYSIWYG]

More information

Drupal 8 / Theming Quickstart

Drupal 8 / Theming Quickstart Drupal 8 / Theming Quickstart Introduction to themes in Drupal 8» New theme layer based in Twig (used in other CMSs)» 2 new core base themes: Stable & Classy» Both contain all the templates Drupal puts

More information

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML UI Course (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) HTML: Introduction The World Wide Web (WWW) and history of HTML Hypertext and Hypertext Markup Language Why HTML Prerequisites Objective

More information

New Visual Design for IRON HQ Release Notes

New Visual Design for IRON HQ Release Notes New Visual Design for IRON HQ Release Notes Based on customer feedback, NetSuite, our platform for HQ, has improved key areas of the user interface including readability, navigation, data entry, and dashboard

More information

SHADOWS READYTHEME CUSTOMIZATION

SHADOWS READYTHEME CUSTOMIZATION SHADOWS READYTHEME CUSTOMIZATION March 2018 Installing the Shadows ReadyTheme These instructions are for installing the Shadows ReadyTheme to a brand new store. If you have an existing store, please contact

More information

The Structure of the Web. Jim and Matthew

The Structure of the Web. Jim and Matthew The Structure of the Web Jim and Matthew Workshop Structure 1. 2. 3. 4. 5. 6. 7. What is a browser? HTML CSS Javascript LUNCH Clients and Servers (creating a live website) Build your Own Website Workshop

More information

Dreamweaver CS4: Layout Guide. Převzato z

Dreamweaver CS4: Layout Guide. Převzato z Dreamweaver CS4: Layout Guide Převzato z www.bewebmaster.com Intro This tutorial will help you: 1. Define a new Dreamweaver web site 2. Create a new HTML file 3. Create a new CSS file and attach it to

More information

COMPONENT DRIVEN DESIGN AND DEVELOPMENT. Cristina Chumillas

COMPONENT DRIVEN DESIGN AND DEVELOPMENT. Cristina Chumillas COMPONENT DRIVEN DESIGN AND DEVELOPMENT Cristina Chumillas CRISTINA CHUMILLAS @chumillas / ckrina Designer and frontend developer at Ymbra WHAT ARE WE GOING TO TALK ABOUT Components Design Systems CSS

More information

High-level accessibility review BTAA

High-level accessibility review BTAA High-level accessibility review BTAA (Engineering Village - final version) Primary Point of Contact Denis Boudreau Principal Web Accessibility Consultant Deque Systems, Inc. Web: www.deque.com Email: denis.boudreau@deque.com

More information

Getting Started with Access

Getting Started with Access MS Access Chapter 2 Getting Started with Access Course Guide 2 Getting Started with Access The Ribbon The strip across the top of the program window that contains groups of commands is a component of the

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

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide BindTuning Installations Instructions, Setup Guide Invent Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

MARKET RESPONSIVE PRESTASHOP THEME USER GUIDE

MARKET RESPONSIVE PRESTASHOP THEME USER GUIDE MARKET RESPONSIVE PRESTASHOP THEME USER GUIDE Version 1.0 Created by: arenathemes Page 1 Contents I. REQUIREMENTS & COMPATIBILITY... 3 II. INSTALLATION... 3 III. CONFIG AFTER INSTALLATION - THEME PACKAGE...

More information

PHP WITH ANGULAR CURRICULUM. What you will Be Able to Achieve During This Course

PHP WITH ANGULAR CURRICULUM. What you will Be Able to Achieve During This Course PHP WITH ANGULAR CURRICULUM What you will Be Able to Achieve During This Course This course will enable you to build real-world, dynamic web sites. If you've built websites using plain HTML, you realize

More information

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder.

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Lesson 1 using Dreamweaver CS3 To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project. (Note:

More information

Sitecore Experience Accelerator 1.3 Rev: September 13, Sitecore Experience Accelerator 1.3

Sitecore Experience Accelerator 1.3 Rev: September 13, Sitecore Experience Accelerator 1.3 Sitecore Experience Accelerator 1.3 Rev: September 13, 2018 Sitecore Experience Accelerator 1.3 All the official Sitecore documentation. Page 1 of 98 Add, edit, and delete a rendering In the Experience

More information

Bluehost and WordPress

Bluehost and WordPress Bluehost and WordPress Your Bluehost account allows you to install a self-hosted Wordpress installation. We will be doing this, and you will be customizing it for your final project. Using WordPress 1.

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

JSN Moviebox Customization Manual Before We Start

JSN Moviebox Customization Manual Before We Start JSN Moviebox Customization Manual Before We Start The first thing we would like to say is this guide is not intended to cover everything you might want to customize the template. Here we disclose only

More information

Front-End UI: Bootstrap

Front-End UI: Bootstrap Responsive Web Design BootStrap Front-End UI: Bootstrap Responsive Design and Grid System Imran Ihsan Assistant Professor, Department of Computer Science Air University, Islamabad, Pakistan www.imranihsan.com

More information

More about HTML. Digging in a little deeper

More about HTML. Digging in a little deeper More about HTML Digging in a little deeper Structural v. Semantic Markup Structural markup is using to encode information about the structure of a document. Examples: , , , and

More information

Theme System. Wisej Themes 1 OVERVIEW

Theme System. Wisej Themes 1 OVERVIEW Theme System 1 OVERVIEW Wisej theme system is quite sophisticated and goes beyond simple CSS or SASS. This document is only a short overview to get you started. The full documentation will be ready at

More information

AGENDA. HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION <nav> :: CSS CODING FOR HOMEPAGE [ <nav> & child elements ] CLASS :: 13.

AGENDA. HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION <nav> :: CSS CODING FOR HOMEPAGE [ <nav> & child elements ] CLASS :: 13. :: DIGITAL IMAGING FUNDAMENTALS :: CLASS NOTES CLASS :: 13 04.26 2017 3 Hours AGENDA HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION home works

More information

Web Designing. Course Content. Basic HTML Tags. Getting started with CSS. Dealing with Images

Web Designing. Course Content. Basic HTML Tags. Getting started with CSS. Dealing with Images Web Designing Course Content Basic HTML Tags Basic HTML template Heading Tags Paragraph and Break tags Bold and Italics HTML lists Getting started with CSS Introduction to CSS CSS rules Where to put your

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

DRESSSHOP RESPONSIVE PRESTASHOP THEME USER GUIDE

DRESSSHOP RESPONSIVE PRESTASHOP THEME USER GUIDE DRESSSHOP RESPONSIVE PRESTASHOP THEME USER GUIDE Version 1.0 Created by: arenathemes Page 1 Contents I. REQUIREMENTS & COMPATIBILITY... 3 II. INSTALLATION... 3 III. CONFIG AFTER INSTALLATION - THEME PACKAGE...

More information

CORE PHP CURRICULUM. Introductory Session Web Architecture Overview of PHP Platform Origins of PHP in the open source community

CORE PHP CURRICULUM. Introductory Session Web Architecture Overview of PHP Platform Origins of PHP in the open source community CORE PHP CURRICULUM What you will Be Able to Achieve During This Course This course will enable you to build real-world, dynamic web sites. If you've built websites using plain HTML, you realize the limitation

More information

FEWD START SCREENCAST!!!!

FEWD START SCREENCAST!!!! FEWD START SCREENCAST!!!! LET'S GET EVERYTHING SET UP! 1. Navigate to the FEWD 51 Dashboard (saraheholden.com/fewd51) and download the Lesson 5 starter code and slides. You'll want to keep the dashboard

More information

Chapter 11 Formatting a Long Document

Chapter 11 Formatting a Long Document Chapter 11 Formatting a Long Document Learning Objectives LO11.1: Work with styles LO11.2: Work with themes LO11.3: Change the style set LO11.4: Work with the document outline LO11.5: Change the margins

More information

IN4MATX 133: User Interface Software

IN4MATX 133: User Interface Software IN4MATX 133: User Interface Software Lecture 21: SASS and Styling in Ionic Professor Daniel A. Epstein TA Jamshir Goorabian TA Simion Padurean 1 Class notes Quiz 4 (Tuesday) will cover November 5th s lecture

More information

Website Functionality

Website Functionality PAGE DESCRIPTION VENTUS Website Functionality PAGE 1 PAGE DESCRIPTION Global Elements PAGE 2 VENTUS Global Elements - Header GLOBAL HEADER The site s header houses the Ventus Logo, the main navigation

More information

DIVINO READYTHEME CUSTOMIZATION

DIVINO READYTHEME CUSTOMIZATION DIVINO READYTHEME CUSTOMIZATION Updated March 2016 Installing the DiVino ReadyTheme These instructions are for installing the Divino ReadyTheme to a brand new store. If you have an existing store, please

More information

Digging Into WordPress. Chapter 4: Theme Design And Development Part 1 ( )

Digging Into WordPress. Chapter 4: Theme Design And Development Part 1 ( ) Digging Into WordPress Chapter 4: Theme Design And Development Part 1 (4.1.1-4.3.4) 4.1.1 Customizing The Loop 1. As we mentioned in the previous chapter, if there is one thing that you need to understand

More information

Interview Question & Answers

Interview Question & Answers BASIC Interview Question & Answers OUR TRAINING YOUR CARRER QUESTIONS & ANSWERS OF HTML Ques: - What are the five possible values for position? Ans: - Values for position: static, relative, absolute, fixed,

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

Color Swatches Pro. Magento Extension User Guide. Official extension page: Color Swatches Pro. User Guide: Color Swatches Pro

Color Swatches Pro. Magento Extension User Guide. Official extension page: Color Swatches Pro. User Guide: Color Swatches Pro Color Swatches Pro Magento Extension User Guide Official extension page: Color Swatches Pro Page 1 Table of contents: 1. How to upload images for attributes... 3 2. General Settings....... 7 3. Price Settings.11

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

GRAPHIC WEB DESIGNER PROGRAM

GRAPHIC WEB DESIGNER PROGRAM NH128 HTML Level 1 24 Total Hours COURSE TITLE: HTML Level 1 COURSE OVERVIEW: This course introduces web designers to the nuts and bolts of HTML (HyperText Markup Language), the programming language used

More information

Adobe Dreamweaver CS6 Digital Classroom

Adobe Dreamweaver CS6 Digital Classroom Adobe Dreamweaver CS6 Digital Classroom Osborn, J ISBN-13: 9781118124093 Table of Contents Starting Up About Dreamweaver Digital Classroom 1 Prerequisites 1 System requirements 1 Starting Adobe Dreamweaver

More information

Documentation:Travel Company Pro WordPress Theme

Documentation:Travel Company Pro WordPress Theme Documentation:Travel Company Pro WordPress Theme Install Travel Company Pro WordPress Theme within a few minutes. Travel Company Pro is a Travel and tour WordPress Theme It s fully responsive with bootstrap

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

MPT Web Design. Week 1: Introduction to HTML and Web Design

MPT Web Design. Week 1: Introduction to HTML and Web Design MPT Web Design Week 1: Introduction to HTML and Web Design What will we do in this class? Learn the basics of HTML and how to create our own template Basic website structure Learn design concepts for a

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

Xerte. Guide to making responsive webpages with Bootstrap

Xerte. Guide to making responsive webpages with Bootstrap Xerte Guide to making responsive webpages with Bootstrap Introduction The Xerte Bootstrap Template provides a quick way to create dynamic, responsive webpages that will work well on any device. Tip: Webpages

More information

DOCUMENTATION. Lotos WordPress Theme

DOCUMENTATION. Lotos WordPress Theme DOCUMENTATION Lotos WordPress Theme Lotos Simple & Elegant Blog Theme Lotos is a versatile and powerful multipurpose WordPress blog theme perfect for any personal blog. Lotos makes customizing your blog

More information

Tutorial 4: Creating Special Effects with CSS

Tutorial 4: Creating Special Effects with CSS Tutorial 4: Creating Special Effects with CSS College of Computing & Information Technology King Abdulaziz University CPCS-403 Internet Applications Programming Objectives Work with CSS selectors Create

More information

Index. Bootstrap framework ASP.NET MVC project set-up, default template, 223

Index. Bootstrap framework ASP.NET MVC project set-up, default template, 223 Index A Accordion-style navigation expanding/shrinking navigation, 77 markup, 75 76 menu option, 75 nav element, 76 77 overflow function, 77 responsive design, 73 74 transition effect, 77 ASP.NET MVC custom

More information

CS7026 Media Queries II. Different Screen Size Different Design

CS7026 Media Queries II. Different Screen Size Different Design CS7026 Media Queries II Different Screen Size Different Design What You ll Learn We ll be restyling an entire page layout to work with different screen sizes and devices using Media queries to apply styles

More information

FROM CSS TO SASS IN WORDPRESS. James Steinbach WP Summit #wpsummit.

FROM CSS TO SASS IN WORDPRESS. James Steinbach WP Summit #wpsummit. FROM CSS TO SASS IN WORDPRESS James Steinbach WP Summit 2014 @jdsteinbach #wpsummit. 1 BENEFITS OF SASS Code organization (partials, nesting) Faster styling (mixins, functions) Scalable code (logic, variables)

More information

A Guide to Using WordPress + RAVEN5. v 1.4 Updated May 25, 2018

A Guide to Using WordPress + RAVEN5. v 1.4 Updated May 25, 2018 + v 1.4 Updated May 25, 2018 Table of Contents 1. Introduction...................................................................................3 2. Logging In.....................................................................................4

More information

Bonus Lesson: Working with Code

Bonus Lesson: Working with Code 15 Bonus Lesson: Working with Code In this lesson, you ll learn how to work with code and do the following: Select code elements in new ways Collapse and expand code entries Write code using code hinting

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. MPRI : Web Data Management. Antoine Amarilli Friday, December 7th 1/43

CSS. MPRI : Web Data Management. Antoine Amarilli Friday, December 7th 1/43 CSS MPRI 2.26.2: Web Data Management Antoine Amarilli Friday, December 7th 1/43 Overview Cascading Style Sheets W3C standard: CSS 1 1996 CSS 2 1998 CSS 2.1 2011, 487 pages CSS 3.0 Ongoing (various modules),

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

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar. Hover Effect:

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar. Hover Effect: GIMP WEB 2.0 MENUS Web 2.0 Menus: Horizontal Navigation Bar WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR Hover Effect: Images required: 58 x 1 px high background image (black gloss gradient) for the nav bar

More information

MEGA MENU USER GUIDE. Phone: Extension version: 1.0 Magento Compatibility: CE 2.

MEGA MENU USER GUIDE.  Phone: Extension version: 1.0 Magento Compatibility: CE 2. support@magestore.com sales@magestore.com Phone: +1-415-954-7137 MEGA MENU USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 Table of Contents 1. INTRODUCTION... 3 2. HOW TO USE AND CONFIGURE...

More information

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist Creating Effective School and PTA Websites Sam Farnsworth Utah PTA Technology Specialist sam@utahpta.org Creating Effective School and PTA Websites Prerequisites: (as listed in class description) HTML

More information

Dreamweaver CS5 Lab 4: Sprys

Dreamweaver CS5 Lab 4: Sprys Dreamweaver CS5 Lab 4: Sprys 1. Create a new html web page. a. Select file->new, and then Blank Page: HTML: 2 column liquid, left sidebar, header and footer b. DocType: XHTML 1.0 Strict c. Layout CSS:

More information

Publications Office Web Guide

Publications Office Web Guide Dissemination and Reuse Directorate Common Portal & Open Data Portal Unit OP.C.1.002 Common Portal & OP Websites Publications Office Web Guide Version 4.0 Date: 24 March 2014 Version: 4.0 Reference Number:

More information

APEX Developers Do More With Less!! How do YOU manage your APEX CSS? Storage Options 1. Web server 2. APEX repository 3. In line 4.

APEX Developers Do More With Less!! How do YOU manage your APEX CSS? Storage Options 1. Web server 2. APEX repository 3. In line 4. APEX Developers Do More With Less!! Roel Hartman Copyright 2016 APEX Consulting 2 How do YOU manage your APEX CSS? Storage Options 1. Web server 2. APEX repository 3. In line 4. Attribute 3 How do YOU

More information