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

Size: px
Start display at page:

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

Transcription

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

2 Objectives Learn what Bootstrap has to offer web developers Install and use Bootstrap Learn the major components / features of Bootstrap See a real-world application of these features to a website redesign

3 What is Bootstrap? Why do you need it? Bootstrap is a web front-end framework With bootstrap you start from a beautiful site and add to it Bootstrap is the designer we never had (and who is never late) Bootstrap solves cross browser compat via a reset css Bootstrap is comprised of o CSS (available via LESS) o JavaScript o Fonts (which stand in for images) Open-source on Github Created by two guys who work at Twitter.

4 Invest a little and (really) learn CSS

5 How do you get Bootstrap?

6 A brief tour of Bootstrap CSS: Components: JavaScript: Grid system Typography Code Tables Forms Buttons Images Helper classes Responsive utilities Glyphicons Dropdowns Button groups Button dropdowns Input groups Navs Navbar Breadcrumbs Pagination Labels Badges Jumbotron Page header Thumbnails Alerts Progress bars Media object List group Panels Wells Transitions Modal Dropdown Scrollspy Tab Tooltip Popover Alert Button Collapse Carousel Affix

7 How did we use Bootstrap at develop.com?

8 A brief tour of Bootstrap: What we're covering CSS: Components: JavaScript: Grid system Typography Code Tables Forms Buttons Images Helper classes Responsive utilities Glyphicons Dropdowns Button groups Button dropdowns Input groups Navs Navbar Breadcrumbs Pagination Labels Badges Jumbotron Page header Thumbnails Alerts Progress bars Media object List group Panels Wells Transitions Modal Dropdown Scrollspy Tab Tooltip Popover Alert Button Collapse Carousel Affix

9 Labels <a class="label label- warning" href="/course/ios">ios</a>

10 Buttons <button class="btn btn- danger">subscribe</button> <a class="btn btn- success" href="...">request onsite</a>

11 Images <img class="img- circle" src="/technicalstaff/image/pierre_nallet.jpg">

12 Jumbotrons (AKA hero units)

13 Jumbotrons (AKA hero units) <section class="jumbotron"> <div class="container"> <h2 class="mission- statement"> We develop people<br> who develop software </h2> <div class="visible- sm visible- xs"></div> <img class="jumbotron- image" src="/images/macbook- pro- vs.jpg"> </div> </section>

14 Blockquotes <blockquote> <p>brock Allen was a brilliant instructor...</p> <small>kexin Sun, <cite>carefusion Corporation</cite></small> </blockquote>

15 Forms <form action="/store/register/..." method="post"> <strong>credit Card Details</strong> <div class="form- group"> <div> <label class="form- label" for="creditcardnumber">card Number</label> <input class="form- control" data- val="true" type="text"></div> </div> </div> </form>

16 Tables <table class="table table- striped course- list"> <! > </table>

17 Wells <div class="well"> <h2>full course curriculum at DevelopMentor</h2> <div>...</div> </div>

18 Dialogs

19 Dialogs <div id="upcoming- classes- dialog" class="modal fade" tabindex="- 1" role="dialog"> <div class="modal- dialog"> <div class="modal- content"> <div class="modal- header"> <button type="button" class="close" data- dismiss="modal"> </button> <h4 class="modal- title">...</h4> </div> <div class="modal- body">... </div> <div class="modal- footer"> <button type="button" class="btn btn- success" data- dismiss="modal">close</button> </div> </div><!- - /.modal- content - - > </div><!- - /.modal- dialog </div>

20 Dialogs <a class='btn...' data- toggle='modal' href='#upcoming- classes- dialog'>upcoming classes</a> <div id="upcoming- classes- dialog" class="modal fade" tabindex="- 1" role="dialog">... </div>

21 Navigation <header> <nav class="navbar navbar- inverse navbar- default">... </nav> </header>

22 Navigation <nav class="main navbar navbar- inverse navbar- default"> <div> <a class="navbar- brand" href="/">developmentor...</a> </div> <ul class="nav navbar- nav"> <li><a href="...">classroom</a></li> <li><a href="...">online</a></li> <li><a href="...">courses</a></li>... <li> class="dropdown">... </li> </ul> </nav>

23 Navigation <nav class="main navbar navbar- inverse navbar- default">... <ul class="nav navbar- nav">... <li class="dropdown"> <a class="dropdown- toggle" data- toggle="dropdown" href="#"> More <span class="glyphicon glyphicon- circle- arrow- down"></span> </a> <ul class="dropdown- menu" role="menu"> <li><a href="...">training curriculum</a></li> <li><a href="...">public course schedule</a></li>... </ul> </li> </ul> </nav>

24 Responsive utilities

25 Responsive utilities Using the responsive classes allow us to keep the key navigation on the screen on smaller devices without creating an overly crowded navigation: wide medium small phone

26 Responsive utilities Using the responsive classes allow us to keep the key navigation on the screen on smaller devices without creating an overly crowded navigation: <li class="hidden- sm"><a href="...">classroom</a></li> <li class="hidden- sm"><a href="...">online</a></li> <li><a href="...">courses</a></li> <li class="hidden- sm hidden- md"><a href="...">search</a></li> <img class="img img- responsive".../>

27 Responsive Grids

28 Font Icons

29 Themes

30 Bower Bower is a great way to install and manage bootstrap Install node.js npm install -g bower bower install bootstrap (may require git)

31 Product / App Images Placeit.net is a sweet way to feature your product

32 Regrets I wish I would have: 1. Used LESS for our CSS and built on Bootstrap's LESS foundation. 2. Learned and used the responsive utilities earlier.

33 Summary: Bootstrap, a case study Bootstrap is that designer you always which you had (or were) Installing Bootstrap is easy (getbootstrap.com or NuGet) Bootstrap offers a wide range of features from CSS layouts, to styles, to behaviors driven via data-* attributes. We saw a real-world application of these features to a website redesign

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

Bootstrap 1/20

Bootstrap 1/20 http://getbootstrap.com/ Bootstrap 1/20 MaxCDN

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

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

Mateen Eslamy 10/31/13

Mateen Eslamy 10/31/13 Mateen Eslamy 10/31/13 Tutorial In this tutorial, you ll learn how to create a webpage using Twitter Bootstrap 3. The goal of this tutorial is to create a responsive webpage, meaning that if the webpage

More information

Chapter6: Bootstrap 3. Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL

Chapter6: Bootstrap 3. Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL Chapter6: Bootstrap 3 Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL Objective To apply Bootstrap to a web site To know how to build various bootstrap commands to be a content Topics Bootstrap

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

WEB/DEVICE DEVELOPMENT CLIENT SIDE MIS/CIT 310

WEB/DEVICE DEVELOPMENT CLIENT SIDE MIS/CIT 310 WEB/DEVICE DEVELOPMENT CLIENT SIDE MIS/CIT 310 Project #4 Updating your class project to be more mobile friendly To gain a fuller appreciate for Responsive Design, please review Chapter 8. Another great

More information

LAMPIRAN. Index.php. <?php. unset($_session["status"]); //session_destroy(); //session_destroy();

LAMPIRAN. Index.php. <?php. unset($_session[status]); //session_destroy(); //session_destroy(); LAMPIRAN Index.php unset($_session["status"]); //session_destroy(); //session_destroy();?>

More information

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

I need two demo sites. And I need them in two days smacss your up @minamarkham I need two demo sites And I need them in two days CSS is easy. hard CSS is easy. CSS is bullshit. Modular CSS Focusing on creating healthy front-end modules instead of complete

More information

HADOOP INTERVIEW QUESTIONS

HADOOP INTERVIEW QUESTIONS HADOOP INTERVIEW QUESTIONS http://www.tutorialspoint.com/hadoop/hadoop_interview_questions.htm Copyright tutorialspoint.com Dear readers, these Hadoop Interview Questions have been designed specially to

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

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

NukaCode - Front End - Bootstrap Documentation

NukaCode - Front End - Bootstrap Documentation Nuka - Front End - Bootstrap Documentation Release 1.0.0 stygian July 04, 2015 Contents 1 Badges 3 1.1 Links................................................... 3 1.2 Installation................................................

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

Mobile Design for the Future That is Here Already. Rick Ells UW Information Technology University of Washington

Mobile Design for the Future That is Here Already. Rick Ells UW Information Technology University of Washington Mobile Design for the Future That is Here Already Rick Ells UW Information Technology University of Washington Why Mobile? Why Accessible? Are UW Web sites a public accomodation under the Americans with

More information

Session 5. Web Page Generation. Reading & Reference

Session 5. Web Page Generation. Reading & Reference Session 5 Web Page Generation 1 Reading Reading & Reference https://en.wikipedia.org/wiki/responsive_web_design https://www.w3schools.com/css/css_rwd_viewport.asp https://en.wikipedia.org/wiki/web_template_system

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

MUSE Web Style Guide DRAFT v3

MUSE Web Style Guide DRAFT v3 MUSE Web Style Guide 2016 DRAFT v3 STYLE GUIDE CONTENTS STYLE GUIDE PURPOSE COLOR PALETTE TYPOGRAPHY MOOD BOARD IMAGERY FOR CONCEPTUALIZING HEADER, FOOTER, NAVIGATION HOMEPAGE and DROP DOWN NAVIGATION

More information

Django AdminLTE 2 Documentation

Django AdminLTE 2 Documentation Django AdminLTE 2 Documentation Release 0.1 Adam Charnock Jul 02, 2018 Contents 1 Contents 3 1.1 Quickstart................................................ 3 1.2 Templates & Blocks Reference.....................................

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

Front End Summit - Sep 27th

Front End Summit - Sep 27th Front End Summit - Sep 27th Twitter Front End Summit Tuesday, September 27th, 2011 Featured Speaker: Andreas Gal of Mozilla PDFs are traditionally rendered using native code plugins. Often enough, those

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

~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

Bootstrap-Flask Documentation

Bootstrap-Flask Documentation Bootstrap-Flask Documentation Release 1.0.4 Grey Li Nov 14, 2018 Contents 1 Contents 3 1.1 Basic Usage............................................... 3 1.2 Use Macros................................................

More information

Enhancing Koha s Public Reports Feature

Enhancing Koha s Public Reports Feature Enhancing Koha s Public Reports Feature A presentation to the Koha-Oz User Group Melbourne Athenaeum 18 August 2016 Bob Birchall / Chris Vella Reports in Koha can be made public FROM THE Koha MANUAL: Report

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

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

Basic Bootstrap Classes

Basic Bootstrap Classes .container Basic Bootstrap Classes sets fixed width to an element (which changes depending on a screen size to other fixed values, so it's still responsive) on all screen sizes except xs - on xs, the width

More information

Building Web Applications

Building Web Applications Building Web Applications Mendel Rosenblum CS142 Lecture Notes - Building Web Applications Good web applications: Design + Implementation Some Design Goals: Intuitive to use Don't need to take a course

More information

LAMPIRAN-LAMPIRAN A. Source Code 1) Sample Controller pada HomeController.php

LAMPIRAN-LAMPIRAN A. Source Code 1) Sample Controller pada HomeController.php 67 LAMPIRAN-LAMPIRAN A. Source Code 1) Sample Controller pada HomeController.php

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

Kaltura MediaSpace Styling Guide. Version: August 2016

Kaltura MediaSpace Styling Guide. Version: August 2016 Kaltura MediaSpace Styling Guide Version: 5.0 - August 2016 Kaltura Business Headquarters 250 Park Avenue South, 10th Floor, New York, NY 10003 Tel.: +1 800 871 5224 Copyright 2016 Kaltura Inc. All Rights

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

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

GROUPER EVALUATION & REMEDIATION REPORT

GROUPER EVALUATION & REMEDIATION REPORT GROUPER EVALUATION & REMEDIATION REPORT Reviewer: Howard Kramer, hkramer@colorado.edu Technology Used: NVDA (ver. 2016.1), Firefox (ver. 48.0.2) on Windows 10 PC Background This report evaluates the Grouper

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

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

djangocms-cascade Documentation

djangocms-cascade Documentation djangocms-cascade Documentation Release 0.12.5 Jacob Rief Jul 10, 2017 Contents 1 Project s home 1 2 Project s goals 3 3 Contents: 5 3.1 For the Impatient.............................................

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

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

Zero to Hero. CSS Frameworks. Zero to Hero. - Boris Fritscher 1 / 26. Bootstrap (

Zero to Hero. CSS Frameworks. Zero to Hero. - Boris Fritscher 1 / 26. Bootstrap ( 643-1-1 Projet de technologies WEB de présentation Zero to Hero Part 1: From blank page to deployed website Tools and git CSS Frameworks don't reinvent the wheel use best practices get reusable components

More information

Django Part II SPARCS 11 undead. Greatly Inspired by SPARCS 10 hodduc

Django Part II SPARCS 11 undead. Greatly Inspired by SPARCS 10 hodduc Django Part II 2015-05-27 SPARCS 11 undead Greatly Inspired by SPARCS 10 hodduc Previously on Django Seminar Structure of Web Environment HTTP Requests and HTTP Responses Structure of a Django Project

More information

Last class we looked at HTML5.

Last class we looked at HTML5. ADVANCED HTML5. #2 2.1 Recap 2 3 Last class we looked at HTML5. headings There are 6 levels available, ranging from h1 to h6. paragraphs links

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

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">

<link rel=stylesheet href=https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css> About the Tutorial Materialize is a UI component library created with CSS, JavaScript, and HTML. Materialize UI components help in constructing attractive, consistent, and functional web pages and web

More information

Comprehensive AngularJS Programming (5 Days)

Comprehensive AngularJS Programming (5 Days) www.peaklearningllc.com S103 Comprehensive AngularJS Programming (5 Days) The AngularJS framework augments applications with the "model-view-controller" pattern which makes applications easier to develop

More information

PROFILE DESIGN TUTORIAL KIT

PROFILE DESIGN TUTORIAL KIT PROFILE DESIGN TUTORIAL KIT NEW PROFILE With the help of feedback from our users and designers worldwide, we ve given our profiles a new look and feel. The new profile is designed to enhance yet simplify

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

Programming web design MICHAEL BERNSTEIN CS 247

Programming web design MICHAEL BERNSTEIN CS 247 Programming web design MICHAEL BERNSTEIN CS 247 Today: how do I make it?! All designers need a medium. Napkin sketches aren t enough.! This week: core concepts for implementing designs on the web! Grids!

More information

Bootstrap All-in-One

Bootstrap All-in-One Solving big problems is easier than solving little problems. Sergey Brin Bootstrap All-in-One A Quick Introduction to Managing Content in Cascade Alex King, Jay Whaley 4/28/17 Bootstrap Docs Facilities

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...

More information

WEBSITE REDESIGN: STYLESHEET & MEASUREMENTS

WEBSITE REDESIGN: STYLESHEET & MEASUREMENTS WEBSITE REDESIGN: STYLESHEET & MEASUREMENTS WEB COLORS 1.0 PRIMARY COLOR PALETTE HEX #f0b323 HEX #d22730 HEX #004c97 HEX #00a9e0 HEX #059949 HEX #f45712 SECONDARY COLOR PALETTE HEX #f4c24f HEX #d84f57

More information

CSS (Cascading Style Sheets): An Overview

CSS (Cascading Style Sheets): An Overview CSS (Cascading Style Sheets): An Overview 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

More information

Webgurukul Web Designing Course

Webgurukul Web Designing Course Webgurukul Web Designing Course Take One step towards IT profession with us Web Designing Course 1. HTML 5 Introduction > W3C and W3C Member > HTML Basics > What is Web HTML Basic > Introduction > Parts

More information

Challenge: Working with the MIS2402 Template

Challenge: Working with the MIS2402 Template Challenge: Working with the MIS2402 Template In this challenge we will see how the appearance of the MIS2402 template can be modified. Start by downloading mis2402template04.zip and setting up a corresponding

More information

Responsive Web Design (RWD)

Responsive Web Design (RWD) Responsive Web Design (RWD) Responsive Web Design: design Web pages, so that it is easy to see on a wide range of of devices phone, tablet, desktop,... Fixed vs Fluid layout Fixed: elements have fixed

More information

Contents. Page Builder Pro Manual

Contents. Page Builder Pro Manual PRISM Contents 1. Website/Pages/Stripes/Items/Elements... 2 2. Click & Edit, Mix & Match (Drag & Drop)... 3 3. Adding a Stripe... 4 4. Managing Stripes... 5 5. Adding a Page... 7 6. Managing Pages and

More information

Log On to Commonspot Adobe Acrobat Pro Microsoft Accessibility Checker Hero Image with Text... 6

Log On to Commonspot Adobe Acrobat Pro Microsoft Accessibility Checker Hero Image with Text... 6 Log On to Commonspot... 2 Adobe Acrobat Pro... 3 Microsoft Accessibility Checker... 5 Hero Image with Text... 6 Colored Background Section, Collapsible Content... 7 Flex Grid Container... 8 Tabbed Container...

More information

Bootstrap Carousel Tutorial

Bootstrap Carousel Tutorial Bootstrap Carousel Tutorial The Bootstrap carousel is a flexible, responsive way to add a slider to your site. Bootstrap carousel can be used in to show case images, display testimonials, display videos,

More information

Mobile Web Development

Mobile Web Development Mobile Web Development By Phil Huhn 2013-04-30 2013 Northern Software Group Agenda Web-site issues for mobile devices Responsive Design Media Queries Twitter Bootstrap As-is (themes) less variables.less

More information

Css Manually Highlight Current Link Nav Link

Css Manually Highlight Current Link Nav Link Css Manually Highlight Current Link Nav Link way to automatically highlight the "current" link. And I can manually add the following CSS to each page to get them highlighted, but I want to avoid added.

More information

WCAG 2.0 A and AA Requirements

WCAG 2.0 A and AA Requirements WCAG 2.0 A and AA Requirements Name of Product Engineering Village URL https://www.engineeringvillage.com/search/quick.url Date Last Updated 28 November, 2018 Completed by Document Description Contact

More information

Designing RIA Accessibility: A Yahoo UI (YUI) Menu Case Study

Designing RIA Accessibility: A Yahoo UI (YUI) Menu Case Study Designing RIA Accessibility: A Yahoo UI (YUI) Menu Case Study Doug Geoffray & Todd Kloots 1 Capacity Building Institute Seattle, Washington 2006.11.30 What s Happening? 2 3 Web 1.0 vs. Web 2.0 Rich Internet

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

djangocms-cascade Documentation

djangocms-cascade Documentation djangocms-cascade Documentation Release 0.16.2 Jacob Rief Jun 13, 2018 Contents 1 Project s home 1 2 Project s goals 3 3 Contents: 5 3.1 For the Impatient.............................................

More information

djangocms-cascade Documentation

djangocms-cascade Documentation djangocms-cascade Documentation Release 0.13.0 Jacob Rief Jul 10, 2017 Contents 1 Project s home 1 2 Project s goals 3 3 Contents: 5 3.1 For the Impatient.............................................

More information

BOOTSTRAP TAB PLUGIN

BOOTSTRAP TAB PLUGIN BOOTSTRAP TAB PLUGIN http://www.tutorialspoint.com/bootstrap/bootstrap_tab_plugin.htm Copyright tutorialspoint.com Tabs were introduced in the chapter Bootstrap Navigation Elements. By combining a few

More information

,.., «..»

,.., «..» ,.., 2018. 09.03.03.19 - «..».... 2018 1 : - 39, 5, 1. : -. :,, -,. -.,,. 2 ... 4 1 -. 6 1.1 -... 6 1.2 -... 9 1.3 -... 11 1.4, -... 13 2. - «..»... 16 2.1.... 16 2.2 CMS WordPress... 17 2.3 -... 22...

More information

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week WEB DESIGNING HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments HTML - Lists HTML - Images HTML

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

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

BOOTSTRAP MOCK TEST BOOTSTRAP MOCK TEST III

BOOTSTRAP MOCK TEST BOOTSTRAP MOCK TEST III BOOTSTRAP MOCK TEST http://www.tutorialspoint.com/bootstrap/pdf/bootstrap_mock_test_iii.htm Copyright tutorialspoint.com This section presents you various set of Mock Tests related to Bootstrap Framework.

More information

SPECIFICATIONS Insert Client Name

SPECIFICATIONS Insert Client Name ESSENTIAL LMS BRANDING SPECIFICATIONS Insert Client Name Creation Date: June 23, 2011 Last Updated: July 11, 2017 Version: 16.5 Page 1 Contents Branding Elements... 3 Theme Management... 3 Header Images...

More information

Contents. Xweb User Manual

Contents. Xweb User Manual USER MANUAL Contents 1. Website/Pages/Sections/Items/Elements...2 2. Click & Edit, Mix & Match (Drag & Drop)...3 3. Adding a Section...4 4. Managing Sections...5 5. Adding a Page...8 6. Managing Pages

More information

T T USER GUIDE. 1. Website/Pages/Stripes/Items/Elements Click & Edit, Mix & Match (Drag & Drop) Adding a Stripe Managing Stripes...

T T USER GUIDE. 1. Website/Pages/Stripes/Items/Elements Click & Edit, Mix & Match (Drag & Drop) Adding a Stripe Managing Stripes... T T T Contents USER GUIDE 1. Website/Pages/Stripes/Items/Elements... 2. Click & Edit, Mix & Match (Drag & Drop)... 3. Adding a Stripe... 4. Managing Stripes... 5. Adding a Page... 6. Managing Pages and

More information

CSCI 311 Spring 2019: Lab 6

CSCI 311 Spring 2019: Lab 6 Learning Objectives: Use bootstrap to create a user-responsive page Explore possibilities not covered in class What to hand in: Submit the following files to VIU Learn no later than Feb. 23, 23:59: self-assessment

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo Lab 2 - Styling and publishing your website (2018-10-10) by Michael Bernstein, Scott Klemmer, Philip Guo, and Sean Kross

More information

ifeature Pro Documentation for ifeature v1.1.2 (last updated 5/04/2011)

ifeature Pro Documentation for ifeature v1.1.2 (last updated 5/04/2011) 1 ifeature Pro Documentation for ifeature v1.1.2 (last updated 5/04/2011) TABLE OF CONTENTS: if Topic Page(s) Installing ifeature Pro 2 Updating ifeature Pro 3 Using the Menu 4 ifeature Pro Layout Templates

More information

[PACKT] HTML5, CSS3, and jquery. Dreamweaver CS5.5 Mobile. and Web Development with

[PACKT] HTML5, CSS3, and jquery. Dreamweaver CS5.5 Mobile. and Web Development with Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jquery Harness the cutting edge features of Dreamweaver for mobile and web development David Karl ins [PACKT] PUBLISHING BIRMINGHAM -

More information

Content Elements. Contents. Row

Content Elements. Contents. Row Content Elements Created by Raitis S, last modified on Feb 09, 2016 This is a list of 40+ available content elements that can be placed on the working canvas or inside of the columns. Think of them as

More information

2017 Progress. All Rights Reserved. The Anatomy Of Responsive ASP.NET Apps WHITEPAPER

2017 Progress. All Rights Reserved. The Anatomy Of Responsive ASP.NET Apps WHITEPAPER The Anatomy Of Responsive ASP.NET Apps WHITEPAPER Contents Overview / 3 The DNA of Responsive Web Design / 4 Selecting a Responsive Framework for Your Next.NET App /14 Perfecting Your App with Advanced

More information

Mastering Universal Theme with Corporate Design from Union Investment. Oliver Lemm APEX World 31th of march 2017

Mastering Universal Theme with Corporate Design from Union Investment. Oliver Lemm APEX World 31th of march 2017 Mastering Universal Theme with Corporate Design from Union Investment Oliver Lemm APEX World 31th of march 2017 about me Oliver Lemm since february 2007 working for MT AG in Ratingen Competence Center

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo, Lab TA: Sean Kross Lab 2 - Styling and publishing your website (2017-10-13) by Michael Bernstein, Scott Klemmer, Philip

More information

CUSTOMER PORTAL. Custom HTML splashpage Guide

CUSTOMER PORTAL. Custom HTML splashpage Guide CUSTOMER PORTAL Custom HTML splashpage Guide 1 CUSTOM HTML Custom HTML splash page templates are intended for users who have a good knowledge of HTML, CSS and JavaScript and want to create a splash page

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

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

WCMS Responsive Design Template Upgrade Training

WCMS Responsive Design Template Upgrade Training WCMS Responsive Design Template Upgrade Training The purpose of this training session is to provide training to site owners, who are upgrading their WCMS content to the new Responsive Design (RD) template.

More information

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page Configuring the Control UI Home Page HCA contains two different user interfaces: One interface called the Development UI - where all design elements and tools are available and you can make changes, and

More information

SmartTheme Manual 1 Last update: 2017/07/29 OptimizePress

SmartTheme Manual 1 Last update: 2017/07/29 OptimizePress SmartTheme Manual 1 Last update: 2017/07/29 OptimizePress Copyright 2017 OptimizePress Table of Contents 1. SmartTheme... 1 2. Initial Setup... 2 2.1. Installing The Theme... 3 2.2. Installing & Activating

More information

ADVANCED JAVASCRIPT #8

ADVANCED JAVASCRIPT #8 ADVANCED JAVASCRIPT #8 8.1 Review JS 3 A conditional statement can compare two values. Here we check if one variable we declared is greater than another. It is true so the code executes. var cups = 15;

More information

For instructions to change the logo, please refer to: ore

For instructions to change the logo, please refer to:   ore Header Note: VapeDay Theme have 2 versions. Version 1.0 with Left bar for long list of categories and Version 2.0 with No Left bar with categories in the header. While editing the theme files from template

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

Mastering the Environment WVU ecampus

Mastering the Environment WVU ecampus Mastering the Environment WVU ecampus Information Technology Services, West Virginia University Service Desk (304) 293-4444, ITShelp@mail.wvu.edu Mastering the Environment of WVU ecampus 1 Table of Contents

More information

Working with PDF s. To open a recent file on the Start screen, double click on the file name.

Working with PDF s. To open a recent file on the Start screen, double click on the file name. Working with PDF s Acrobat DC Start Screen (Home Tab) When Acrobat opens, the Acrobat Start screen (Home Tab) populates displaying a list of recently opened files. The search feature on the top of the

More information

UX/UI Controller Component

UX/UI Controller Component http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:mrte:ux_ui:ux_ui_controller_component_3.5 UX/UI Controller Component Outline egovframework offers the user an experience to enjoy one of the most

More information

AURUM Metro Navigation

AURUM Metro Navigation AURUM Metro Navigation End User Document Version 1.0 Oct 2016 Table of Contents 1. Introduction... 3 2. Initialization... 4 2.1 Create Metro Navigation List... 4 2.1.1 Adding the Metro Navigation Web part...

More information

HTML Organizing Page Content

HTML Organizing Page Content HTML Organizing Page Content CSS for layout Examples http://www.shinybytes.com/newcss.html Generic Elements Used to create a logical grouping of content or elements on the page Can be customized to describe

More information

Checkbox 5 - Style Guide

Checkbox 5 - Style Guide Checkbox 5 - Style Guide Survey Styles are style templates that can be applied to surveys and reports. This guide will show you how to create a new Survey Style and apply it (and other appearance configurations)

More information