SlideShare a Scribd company logo
1 of 40
Download to read offline
Building Responsive
Websites with the
Bootstrap 3 Framework
Michael Slater and Charity Grace Kirk

michael@webvanta.com
888.670.6793
1
Today’s Presenters
Michael Slater
‣

President and Cofounder of Webvanta

‣

Has been creating content-rich websites since the
web’s early days

‣

Previously director of technology strategy at Adobe
Systems

Charity Grace Kirk
‣

Senior web developer at Webvanta

‣

More than 5 years experience building sites for clients
on the Webvanta platform

‣

Experience in content strategy, search engine
optimization, and online marketing.

2
Asking Questions
Now
• Ask questions by entering the text
in the GoToWebinar control panel
Later
• Follow up with us afterwards
(sales@webvanta.com) if you have questions
that didn’t get addressed
• Link to slides, video, and code will be emailed
to you tomorrow
3
What is Your Role in
Building Websites?
• Designer
• Developer
• Manager

4
Why Responsive
Design?

5
Adapt to a wide range of
screen sizes

http://www.tempeazdentist.com
6
Desktop-focused sites are
hard to use on phones

7
Google encouraging
responsive design

Searches on mobile phones should link to
mobile-friendly content
8
How much of your browsing
is on a phone or tablet?
• None
• Less than 10%
• 10% to 40%
• About half
• More than half

9
Mobile is Exploding!
Mobile devices (phones and tablets)
‣ Now account for ~20% of all web traffic
‣ Higher for restaurants, hotels

Black Friday mobile traffic
‣ Up 34% from last year, sales up 43%
‣ 21.6% of all online sales from mobile
10
The Mobile Site
Alternative

jQuery Mobile
with Server-side
mobile detection

http://arthistory.berkeley.edu
11
Responsive Design
Basics
• Uses CSS Media Queries
• More than just fluid design
‣ Columns can stack at smaller widths
‣ Sizes, padding, margin … all can adjust
‣ Elements can be hidden or swapped out

12
CSS Media Queries
For Example:
@media (min-width: 440px) and (max-width: 767px) {
h1.logo {
text-align: center;
}
rule will only apply to screens
.subtitle {
440px wide to 767 px wide
display: none;
}
}

13
Media Query
Browser Support
• Chrome, Firefox, Safari, Opera
‣ All reasonably recent versions

• IE10 fully supported
• IE9: except for a few CSS enhancements
• IE8: requires respond.js and html5shiv.js
• IE7: not officially supported, but
“should look and behave well enough”
14
Why Bootstrap?
Speed up development
‣ Responsive grid system
‣ Quality default typography
‣ Common components
‣ Popular jQuery plugins
‣ Simplifies “bootstrapping” your design
15
What is Bootstrap?
• Created by Twitter, published as open
source
• Consists of a CSS file, a JS file, and an icon
font
• CSS is compiled from LESS source
• JS can be loaded in “everything” version or
only selected pieces
‣ Requires jQuery
16
Mobile-First Strategy
Content
• Determine what is most important
Layout
• Design to smaller widths first
• Base CSS addresses phones; media queries for
tablet and desktop
Progressive enhancement
• Add elements as screen size increases
17
Bootstrap
Break Points
/* Extra small devices (“phones”, less than 768px) */
/* No media query need as this is the default Bootstrap */
/* Small devices (“tablets”, 768px and up) */
@media (min-width: 768px) { ... }
/* Medium devices (“desktops”, 992px and up) */
@media (min-width: 992px) { ... }
/* Large devices (“large desktops”, 1200px and up) */
@media (min-width: 1200px) { ... }

18
Responsive Grid
• Standard grid is 12 columns wide
• Fluid by default, then 3 fixed widths
design
width
max
column

fluid

750px

970px

1170px

100%

60px

78px

95px

19
Basic Grid Structure
• <div class=“container”>
‣ <div class=“row”>

• <div class=“col-*-*”></div>
• <div class=“col-*-*”></div>
‣ </div>
‣ <div class=“row”>… </div>

• <div class=“container”>
‣ ...
20
Example 1
understanding .col-md-*

See grid.html

21
Controlling the Grid
• Each breakpoint has its own grid class
‣ .col-xs-*, .col-sm-*, .col-md-*, .col-lg-*

• Below the smallest defined breakpoint
for a column, it stacks vertically

22
Example 2
easy column scaling up and down

See grid2.html
23
Ordering the Grid
• Push and Pull columns to position on
larger widths.
‣ e.g. .col-md-push-* or .col-md-pull-*

24
Example 3
easy column positioning

See grid3.html

25
Responsive Images
• Background Images in CSS
‣ Can load appropriate-size image based on
viewport size (via media queries)

• Images in HTML (<img src="filename.jpg">)
‣ Class .img-responsive sets max-width to
100%
‣ Browser scales images to fit container, but
doesn’t allow them to get pixelated
26
Helper Classes
• Bootstrap includes a variety of CSS
classes to help make markup more
semantic
‣ pull-left, pull-right
‣ center-block, text-right, text-center …
‣ clearfix
‣ visible-xs, hidden-xs, visible-md …
27
Navigation
Vertical Toggle Nav

Horizontal Nav

http://www.wchealth.org
28
JavaScript Features
• Many common JavaScript-based plugins
and functions included
‣ Carousel, transitions
‣ Modal, alert
‣ Dropdown, tab, tooltip, popover, button
‣ Collapse
‣ Scrollspy
29
JavaScript without
JavaScript
• CSS classes and HTML5 data attributes
used to trigger behavior
• Bootstrap JS file finds these attributes
and uses them to active JS and CSS
code

30
JavaScript Plugin
Examples

see widgets.html

31
Visual Components
• Icon library
• Buttons
• Breadcrumbs
• Pagination
• Navbar
• Progress bar
• ... and more
32
Does Bootstrap seem
like a good fit for you?
• No (don’t plan to support mobile)
• No (plan to support mobile differently)
• Probably, I need to learn more
• Yes, I can’t wait!

33
Customizing
• Add your own CSS file after the
Bootstrap file to override and add
classes
• Can edit source LESS files and
recompile into customized CSS
‣ Upgrading to new Bootstrap version can
be difficult

34
Other Responsive
Frameworks
• Foundation (foundation.zurb.com)
• Skeleton (getskeleton.com)

35
Get Started!
getbootstrap.com
www.webvanta.com/trial

36
Webvanta
SmartTheme
• Gives you an instant start
• Fully hosted, all code in place
• Integrate with database-driven content
• The fast way to a powerful, custom
and responsive site
• Join our January webinar
37
What are your
major questions?
• Let us know what more you’d like to
know and we’ll use it to guide our
upcoming articles and webinars

38
We’re Here to Help
• Webvanta specializes in creating content-rich
sites that deliver on business goals
• Get your private consultation
‣ Free 30-minute consultation
‣ email sales@webvanta.com or call 888.670.6793

• Learn more online and stay in touch
‣ www.webvanta.com/blog
‣ www.facebook.com/webvanta
39
241 South Main Street
Sebastopol, CA 95472
sales@webvanta.com
888.670.6793
www.webvanta.comt

40

More Related Content

What's hot

CSS Frameworks for Rapid Site Designs
CSS Frameworks for Rapid Site DesignsCSS Frameworks for Rapid Site Designs
CSS Frameworks for Rapid Site DesignsBen MacNeill
 
Lightning Intro to Serverless, GCP (2017-10-19)
Lightning Intro to Serverless, GCP (2017-10-19)Lightning Intro to Serverless, GCP (2017-10-19)
Lightning Intro to Serverless, GCP (2017-10-19)Mattias Andersson
 
2014 Android and iOS Design Trends
2014 Android and iOS Design Trends2014 Android and iOS Design Trends
2014 Android and iOS Design TrendsMelvin Thambi
 
Web and Business
Web and BusinessWeb and Business
Web and Businesssvik88
 
Embracing the modern web using Drupal as a Headless CMS with Gatsby BADCamp
Embracing the modern web using Drupal as a Headless CMS with Gatsby BADCampEmbracing the modern web using Drupal as a Headless CMS with Gatsby BADCamp
Embracing the modern web using Drupal as a Headless CMS with Gatsby BADCampJesus Manuel Olivas
 
Big Websites for Small Screens: ICANN.org Case Study
Big Websites for Small Screens: ICANN.org Case StudyBig Websites for Small Screens: ICANN.org Case Study
Big Websites for Small Screens: ICANN.org Case StudyFour Kitchens
 
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Administration
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal AdministrationDrupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Administration
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal AdministrationDrupalMumbai
 
Villanueva, realyn p.
Villanueva, realyn p.Villanueva, realyn p.
Villanueva, realyn p.MaridelBajeta
 

What's hot (11)

CSS Frameworks for Rapid Site Designs
CSS Frameworks for Rapid Site DesignsCSS Frameworks for Rapid Site Designs
CSS Frameworks for Rapid Site Designs
 
Lightning Intro to Serverless, GCP (2017-10-19)
Lightning Intro to Serverless, GCP (2017-10-19)Lightning Intro to Serverless, GCP (2017-10-19)
Lightning Intro to Serverless, GCP (2017-10-19)
 
2014 Android and iOS Design Trends
2014 Android and iOS Design Trends2014 Android and iOS Design Trends
2014 Android and iOS Design Trends
 
Web and Business
Web and BusinessWeb and Business
Web and Business
 
Slideshare again
Slideshare againSlideshare again
Slideshare again
 
Ds05 power bi
Ds05   power biDs05   power bi
Ds05 power bi
 
Embracing the modern web using Drupal as a Headless CMS with Gatsby BADCamp
Embracing the modern web using Drupal as a Headless CMS with Gatsby BADCampEmbracing the modern web using Drupal as a Headless CMS with Gatsby BADCamp
Embracing the modern web using Drupal as a Headless CMS with Gatsby BADCamp
 
Slideshare.net
Slideshare.netSlideshare.net
Slideshare.net
 
Big Websites for Small Screens: ICANN.org Case Study
Big Websites for Small Screens: ICANN.org Case StudyBig Websites for Small Screens: ICANN.org Case Study
Big Websites for Small Screens: ICANN.org Case Study
 
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Administration
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal AdministrationDrupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Administration
Drupal Global Training Day by Drupal Mumbai 6th Sep - Drupal Administration
 
Villanueva, realyn p.
Villanueva, realyn p.Villanueva, realyn p.
Villanueva, realyn p.
 

Similar to Building Responsive Websites with the Bootstrap 3 Framework

FITC - Bootstrap Unleashed
FITC - Bootstrap UnleashedFITC - Bootstrap Unleashed
FITC - Bootstrap UnleashedRami Sayar
 
Node.js 101
 Node.js 101 Node.js 101
Node.js 101FITC
 
Responsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparisonResponsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparisonDhrubaJyoti Dey
 
UX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentations
UX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentationsUX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentations
UX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentationsUX Alive Conference
 
SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013Marc D Anderson
 
Training presentation.pptx
Training presentation.pptxTraining presentation.pptx
Training presentation.pptxNishchaiyaBayla1
 
WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...
WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...
WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...nois3
 
Win j svsphonegap-damyan-petev-mihail-mateev
Win j svsphonegap-damyan-petev-mihail-mateevWin j svsphonegap-damyan-petev-mihail-mateev
Win j svsphonegap-damyan-petev-mihail-mateevMihail Mateev
 
Bootstrap for Beginners
Bootstrap for BeginnersBootstrap for Beginners
Bootstrap for BeginnersD'arce Hess
 
FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFrédéric Harper
 
How to make a great website
How to make a great websiteHow to make a great website
How to make a great websiteDr. Taher Ghazal
 
Best 5 CSS Frameworks You Should Know To Design Attractive Websites .pdf
Best 5 CSS Frameworks You Should Know To Design Attractive Websites .pdfBest 5 CSS Frameworks You Should Know To Design Attractive Websites .pdf
Best 5 CSS Frameworks You Should Know To Design Attractive Websites .pdfAppdeveloper10
 
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin..."Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...Yandex
 
Mobile Best Practices
Mobile Best PracticesMobile Best Practices
Mobile Best Practicesmintersam
 
Pearls and Must-Have Tools for the Modern Web / .NET Developer
Pearls and Must-Have Tools for the Modern Web / .NET DeveloperPearls and Must-Have Tools for the Modern Web / .NET Developer
Pearls and Must-Have Tools for the Modern Web / .NET DeveloperOfer Zelig
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. ToolboxWojtek Zając
 

Similar to Building Responsive Websites with the Bootstrap 3 Framework (20)

FITC - Bootstrap Unleashed
FITC - Bootstrap UnleashedFITC - Bootstrap Unleashed
FITC - Bootstrap Unleashed
 
Node.js 101
 Node.js 101 Node.js 101
Node.js 101
 
Responsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparisonResponsive web design with various grids and frameworks comparison
Responsive web design with various grids and frameworks comparison
 
UX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentations
UX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentationsUX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentations
UX Alive Conference speaker is Vitaly Friedman (Smashing Magazine) presentations
 
SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013
 
Training presentation.pptx
Training presentation.pptxTraining presentation.pptx
Training presentation.pptx
 
Twitter bootstrap1
Twitter bootstrap1Twitter bootstrap1
Twitter bootstrap1
 
WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...
WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...
WUD Rome 2014 - Delightful UX – Real-Life Responsive Web Design (EN) - Vitaly...
 
Win j svsphonegap-damyan-petev-mihail-mateev
Win j svsphonegap-damyan-petev-mihail-mateevWin j svsphonegap-damyan-petev-mihail-mateev
Win j svsphonegap-damyan-petev-mihail-mateev
 
Bootstrap for Beginners
Bootstrap for BeginnersBootstrap for Beginners
Bootstrap for Beginners
 
FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web Design
 
How to make a great website
How to make a great websiteHow to make a great website
How to make a great website
 
Best 5 CSS Frameworks You Should Know To Design Attractive Websites .pdf
Best 5 CSS Frameworks You Should Know To Design Attractive Websites .pdfBest 5 CSS Frameworks You Should Know To Design Attractive Websites .pdf
Best 5 CSS Frameworks You Should Know To Design Attractive Websites .pdf
 
KATHY ZHANG_3
KATHY ZHANG_3KATHY ZHANG_3
KATHY ZHANG_3
 
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin..."Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
 
Mobile Best Practices
Mobile Best PracticesMobile Best Practices
Mobile Best Practices
 
Pearls and Must-Have Tools for the Modern Web / .NET Developer
Pearls and Must-Have Tools for the Modern Web / .NET DeveloperPearls and Must-Have Tools for the Modern Web / .NET Developer
Pearls and Must-Have Tools for the Modern Web / .NET Developer
 
Comparison ppt
Comparison pptComparison ppt
Comparison ppt
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. Toolbox
 
Psd to foundation
Psd to foundationPsd to foundation
Psd to foundation
 

Recently uploaded

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 

Recently uploaded (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

Building Responsive Websites with the Bootstrap 3 Framework

  • 1. Building Responsive Websites with the Bootstrap 3 Framework Michael Slater and Charity Grace Kirk michael@webvanta.com 888.670.6793 1
  • 2. Today’s Presenters Michael Slater ‣ President and Cofounder of Webvanta ‣ Has been creating content-rich websites since the web’s early days ‣ Previously director of technology strategy at Adobe Systems Charity Grace Kirk ‣ Senior web developer at Webvanta ‣ More than 5 years experience building sites for clients on the Webvanta platform ‣ Experience in content strategy, search engine optimization, and online marketing. 2
  • 3. Asking Questions Now • Ask questions by entering the text in the GoToWebinar control panel Later • Follow up with us afterwards (sales@webvanta.com) if you have questions that didn’t get addressed • Link to slides, video, and code will be emailed to you tomorrow 3
  • 4. What is Your Role in Building Websites? • Designer • Developer • Manager 4
  • 6. Adapt to a wide range of screen sizes http://www.tempeazdentist.com 6
  • 7. Desktop-focused sites are hard to use on phones 7
  • 8. Google encouraging responsive design Searches on mobile phones should link to mobile-friendly content 8
  • 9. How much of your browsing is on a phone or tablet? • None • Less than 10% • 10% to 40% • About half • More than half 9
  • 10. Mobile is Exploding! Mobile devices (phones and tablets) ‣ Now account for ~20% of all web traffic ‣ Higher for restaurants, hotels Black Friday mobile traffic ‣ Up 34% from last year, sales up 43% ‣ 21.6% of all online sales from mobile 10
  • 11. The Mobile Site Alternative jQuery Mobile with Server-side mobile detection http://arthistory.berkeley.edu 11
  • 12. Responsive Design Basics • Uses CSS Media Queries • More than just fluid design ‣ Columns can stack at smaller widths ‣ Sizes, padding, margin … all can adjust ‣ Elements can be hidden or swapped out 12
  • 13. CSS Media Queries For Example: @media (min-width: 440px) and (max-width: 767px) { h1.logo { text-align: center; } rule will only apply to screens .subtitle { 440px wide to 767 px wide display: none; } } 13
  • 14. Media Query Browser Support • Chrome, Firefox, Safari, Opera ‣ All reasonably recent versions • IE10 fully supported • IE9: except for a few CSS enhancements • IE8: requires respond.js and html5shiv.js • IE7: not officially supported, but “should look and behave well enough” 14
  • 15. Why Bootstrap? Speed up development ‣ Responsive grid system ‣ Quality default typography ‣ Common components ‣ Popular jQuery plugins ‣ Simplifies “bootstrapping” your design 15
  • 16. What is Bootstrap? • Created by Twitter, published as open source • Consists of a CSS file, a JS file, and an icon font • CSS is compiled from LESS source • JS can be loaded in “everything” version or only selected pieces ‣ Requires jQuery 16
  • 17. Mobile-First Strategy Content • Determine what is most important Layout • Design to smaller widths first • Base CSS addresses phones; media queries for tablet and desktop Progressive enhancement • Add elements as screen size increases 17
  • 18. Bootstrap Break Points /* Extra small devices (“phones”, less than 768px) */ /* No media query need as this is the default Bootstrap */ /* Small devices (“tablets”, 768px and up) */ @media (min-width: 768px) { ... } /* Medium devices (“desktops”, 992px and up) */ @media (min-width: 992px) { ... } /* Large devices (“large desktops”, 1200px and up) */ @media (min-width: 1200px) { ... } 18
  • 19. Responsive Grid • Standard grid is 12 columns wide • Fluid by default, then 3 fixed widths design width max column fluid 750px 970px 1170px 100% 60px 78px 95px 19
  • 20. Basic Grid Structure • <div class=“container”> ‣ <div class=“row”> • <div class=“col-*-*”></div> • <div class=“col-*-*”></div> ‣ </div> ‣ <div class=“row”>… </div> • <div class=“container”> ‣ ... 20
  • 22. Controlling the Grid • Each breakpoint has its own grid class ‣ .col-xs-*, .col-sm-*, .col-md-*, .col-lg-* • Below the smallest defined breakpoint for a column, it stacks vertically 22
  • 23. Example 2 easy column scaling up and down See grid2.html 23
  • 24. Ordering the Grid • Push and Pull columns to position on larger widths. ‣ e.g. .col-md-push-* or .col-md-pull-* 24
  • 25. Example 3 easy column positioning See grid3.html 25
  • 26. Responsive Images • Background Images in CSS ‣ Can load appropriate-size image based on viewport size (via media queries) • Images in HTML (<img src="filename.jpg">) ‣ Class .img-responsive sets max-width to 100% ‣ Browser scales images to fit container, but doesn’t allow them to get pixelated 26
  • 27. Helper Classes • Bootstrap includes a variety of CSS classes to help make markup more semantic ‣ pull-left, pull-right ‣ center-block, text-right, text-center … ‣ clearfix ‣ visible-xs, hidden-xs, visible-md … 27
  • 28. Navigation Vertical Toggle Nav Horizontal Nav http://www.wchealth.org 28
  • 29. JavaScript Features • Many common JavaScript-based plugins and functions included ‣ Carousel, transitions ‣ Modal, alert ‣ Dropdown, tab, tooltip, popover, button ‣ Collapse ‣ Scrollspy 29
  • 30. JavaScript without JavaScript • CSS classes and HTML5 data attributes used to trigger behavior • Bootstrap JS file finds these attributes and uses them to active JS and CSS code 30
  • 32. Visual Components • Icon library • Buttons • Breadcrumbs • Pagination • Navbar • Progress bar • ... and more 32
  • 33. Does Bootstrap seem like a good fit for you? • No (don’t plan to support mobile) • No (plan to support mobile differently) • Probably, I need to learn more • Yes, I can’t wait! 33
  • 34. Customizing • Add your own CSS file after the Bootstrap file to override and add classes • Can edit source LESS files and recompile into customized CSS ‣ Upgrading to new Bootstrap version can be difficult 34
  • 35. Other Responsive Frameworks • Foundation (foundation.zurb.com) • Skeleton (getskeleton.com) 35
  • 37. Webvanta SmartTheme • Gives you an instant start • Fully hosted, all code in place • Integrate with database-driven content • The fast way to a powerful, custom and responsive site • Join our January webinar 37
  • 38. What are your major questions? • Let us know what more you’d like to know and we’ll use it to guide our upcoming articles and webinars 38
  • 39. We’re Here to Help • Webvanta specializes in creating content-rich sites that deliver on business goals • Get your private consultation ‣ Free 30-minute consultation ‣ email sales@webvanta.com or call 888.670.6793 • Learn more online and stay in touch ‣ www.webvanta.com/blog ‣ www.facebook.com/webvanta 39
  • 40. 241 South Main Street Sebastopol, CA 95472 sales@webvanta.com 888.670.6793 www.webvanta.comt 40