SlideShare a Scribd company logo
1 of 35
Download to read offline
Accessible content is available upon request.
Putting on your Design Bootstraps
Intro to Responsive Design & SharePoint
By: D’arce Hess
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
@darcehess
https://www.linkedin.com/in/darcehess
Darce.Hess@avepoint.com
D’arce Hess
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Introduction
References
Responsive vs. Adaptive Bootstrap
Integration with
SharePoint
QuestionsBest PracticesIt’s a Bugs Life
Agenda
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
INTRODUCTION
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
RESPONSIVE DESIGN
Coined by Ethan
Marcotte in “A List
Apart” article.
Requires:
• Media Queries
• Flexible Images
• Grid
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
More than
meets the
eye.
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
MobileTabletDesktop
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
ADAPTIVE DESIGN
Distinct layouts for
multiple screen sizes,
and the layout used
depends on the screen
size used.
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
COMPONENTS
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Grid Flexible ImagesMedia Queries
WHAT DO YOU NEED?
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
THE GRID
12 Columns
Allows for Design to be easily broken up into
common layouts.
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
MEDIA QUERIES
CSS3 module allowing content rendering to adapt to conditions such
as screen resolution
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
FLEXIBLE IMAGES
Images created in
correct format and size
to allow for CSS
re-sizing based on
screen width
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
BOOTSTRAP 3
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
ABOUT BOOTSTRAP FRAMEWORK
Supports both Sass and Less solutions for
development.
Bootstrap is the most popular HTML, CSS, and
JS framework for developing responsive,
mobile first projects on the web.
Lots of added functionality, i.e.
Glyphicons, Navigation & responsive
embed
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
PROS vs CONS
Pros Cons
• Allows for faster
prototyping
• Grid has already been
established
• Easy to engage newer
web developers
• SASS and LESS
• Can be bloated
• Some resets need to be
made to work with
SharePoint
• May be too restrictive for
experienced developers
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
UNDERSTANDING THE STRUCTURE
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
IMPLEMENT INTO MASTER PAGE
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Set up your frame the same and then bring in the webpart containers inside of your columns
This is a page layout example
IMPLEMENT INTO PAGE LAYOUT
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Both of these layouts us the “Wiki” page layout. These are out-of-the-box layouts that do not come with
Publishing Features enabled.
This means you cannot create a custom layout for these pages. You can make them responsive by
adjusting the tables in the layout, but it is very difficult to do.
MY SITES & TEAM SITES
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
DEMO
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Sass is a pre-processor for CSS
Compiles to
WHAT IS SASS (NOT SAS)
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Mixins
Do you remember your order of operations?
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Mindscape Web Workbench
SassyStudio
SASS SUPPORT IN VISUAL STUDIO
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
IT’S A BUGS LIFE
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Bootstrap uses box-sizing: border-box;
This means that padding does not affect the
computed width of an element.
SharePoint uses box-sizing: content-box;
This means that if you add a border to an element
it equals the element + 2px.
THE BOX MODEL
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
CSS OVERIDES NEEDED
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
BEST PRACTICES
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
WITH GREAT POWER…
Just because you can, doesn’t mean that you should!
Time to think about the user experience:
• Do you want your users to scroll forever when down
on a mobile device?
• That beautiful banner image and rotator do not add
any value on a phone.
• Mobile users are using data to load your site, size of
images and files matters. Time to optimize.
• Think of options for links and buttons to be easier to
use for touch.
• Remember, there is no hover functionality on a
mobile device
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
ON PREM OR CLOUD?
• More control over Master Page
• Create Custom Page Layouts
• Use javascript injections for specific
functionality
• Advised not to alter Master Page
• Create Custom Page Layouts
• Use alternative CSS
• Use javascript injections for specific
functionality
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
Powershell
Manual
Deployment
“Add-in”
Model/CSOM
Third-Party
Solution
Multiple Site Collection Deployment
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
QUESTION & ANSWER
© AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a
retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.

More Related Content

What's hot

Style guide for share point 2013 branding
Style guide for share point 2013 brandingStyle guide for share point 2013 branding
Style guide for share point 2013 brandingVinod Dangudubiyyapu
 
SharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishSharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishKanwal Khipple
 
Designing SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessDesigning SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessKanwal Khipple
 
Blooming SharePoint Design
Blooming SharePoint DesignBlooming SharePoint Design
Blooming SharePoint DesignKathy Hughes
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...SPTechCon
 
Branding sharepoint project
Branding sharepoint projectBranding sharepoint project
Branding sharepoint projectBinh Nguyen
 
Branding SharePoint 2013
Branding SharePoint 2013Branding SharePoint 2013
Branding SharePoint 2013NIFTIT
 
SharePoint 2013 Branding
SharePoint 2013 BrandingSharePoint 2013 Branding
SharePoint 2013 BrandingKashif Imran
 
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...SPTechCon
 
Introduction to SharePoint 2013 WCM-DM-ECM for Business Users and Developers
Introduction to SharePoint 2013 WCM-DM-ECM for Business Users and DevelopersIntroduction to SharePoint 2013 WCM-DM-ECM for Business Users and Developers
Introduction to SharePoint 2013 WCM-DM-ECM for Business Users and DevelopersNetwoven Inc.
 
SPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point brandingSPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point brandingThomas Daly
 
SharePoint 2013 Web Content Management for Developers HSPUG
SharePoint 2013 Web Content Management for Developers HSPUGSharePoint 2013 Web Content Management for Developers HSPUG
SharePoint 2013 Web Content Management for Developers HSPUGEd Musters
 
SharePoint 2013 Web Content Management for Developers TSPUG
SharePoint 2013 Web Content Management for Developers TSPUGSharePoint 2013 Web Content Management for Developers TSPUG
SharePoint 2013 Web Content Management for Developers TSPUGEd Musters
 
Basics of SharePoint
Basics of SharePointBasics of SharePoint
Basics of SharePointsamirsangli
 
Peter Ward: The True Power of SharePoint Designer Workflows
Peter Ward: The True Power of SharePoint Designer WorkflowsPeter Ward: The True Power of SharePoint Designer Workflows
Peter Ward: The True Power of SharePoint Designer WorkflowsSharePoint Saturday NY
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Vishal Pawar
 
Sitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN serversSitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN serversAnindita Bhattacharya
 

What's hot (20)

Style guide for share point 2013 branding
Style guide for share point 2013 brandingStyle guide for share point 2013 branding
Style guide for share point 2013 branding
 
SharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishSharePoint Branding From Start to Finish
SharePoint Branding From Start to Finish
 
Designing SharePoint 2010 for Business
Designing SharePoint 2010 for BusinessDesigning SharePoint 2010 for Business
Designing SharePoint 2010 for Business
 
Blooming SharePoint Design
Blooming SharePoint DesignBlooming SharePoint Design
Blooming SharePoint Design
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
 
Branding sharepoint project
Branding sharepoint projectBranding sharepoint project
Branding sharepoint project
 
Branding SharePoint 2013
Branding SharePoint 2013Branding SharePoint 2013
Branding SharePoint 2013
 
SharePoint 2013 Branding
SharePoint 2013 BrandingSharePoint 2013 Branding
SharePoint 2013 Branding
 
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
Tutorial, Part 1: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
 
Introduction to SharePoint 2013 WCM-DM-ECM for Business Users and Developers
Introduction to SharePoint 2013 WCM-DM-ECM for Business Users and DevelopersIntroduction to SharePoint 2013 WCM-DM-ECM for Business Users and Developers
Introduction to SharePoint 2013 WCM-DM-ECM for Business Users and Developers
 
Bootstrap share point 2013
Bootstrap share point 2013Bootstrap share point 2013
Bootstrap share point 2013
 
SPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point brandingSPSVB 1 7-2012 - getting started with share point branding
SPSVB 1 7-2012 - getting started with share point branding
 
SharePoint 2013 Web Content Management for Developers HSPUG
SharePoint 2013 Web Content Management for Developers HSPUGSharePoint 2013 Web Content Management for Developers HSPUG
SharePoint 2013 Web Content Management for Developers HSPUG
 
SharePoint 2013 Web Content Management for Developers TSPUG
SharePoint 2013 Web Content Management for Developers TSPUGSharePoint 2013 Web Content Management for Developers TSPUG
SharePoint 2013 Web Content Management for Developers TSPUG
 
Discover SharePoint 2013
Discover SharePoint 2013Discover SharePoint 2013
Discover SharePoint 2013
 
SharePoint Programming Basic
SharePoint Programming BasicSharePoint Programming Basic
SharePoint Programming Basic
 
Basics of SharePoint
Basics of SharePointBasics of SharePoint
Basics of SharePoint
 
Peter Ward: The True Power of SharePoint Designer Workflows
Peter Ward: The True Power of SharePoint Designer WorkflowsPeter Ward: The True Power of SharePoint Designer Workflows
Peter Ward: The True Power of SharePoint Designer Workflows
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013
 
Sitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN serversSitecore Personalization on websites cached on CDN servers
Sitecore Personalization on websites cached on CDN servers
 

Viewers also liked

2011 01-11-SharePoint UserGroup Düsseldorf SPDashboard
2011 01-11-SharePoint UserGroup Düsseldorf  SPDashboard2011 01-11-SharePoint UserGroup Düsseldorf  SPDashboard
2011 01-11-SharePoint UserGroup Düsseldorf SPDashboardThorsten Firzlaff
 
2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...
2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...
2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...Thorsten Firzlaff
 
Fast Track Project Management Success with Project Online
Fast Track Project Management Success with Project OnlineFast Track Project Management Success with Project Online
Fast Track Project Management Success with Project OnlineAvePoint
 
2013 09-05 Bechtle IT Forum Rhein Main
2013 09-05 Bechtle IT Forum Rhein Main2013 09-05 Bechtle IT Forum Rhein Main
2013 09-05 Bechtle IT Forum Rhein MainThorsten Firzlaff
 
Integrate your business - SharePoint 2010 and Microsoft Dynamics NAV
Integrate your business - SharePoint 2010 and Microsoft Dynamics NAVIntegrate your business - SharePoint 2010 and Microsoft Dynamics NAV
Integrate your business - SharePoint 2010 and Microsoft Dynamics NAVChristian Krause
 
2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...
2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...
2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...Thorsten Firzlaff
 
ECM in der Praxis: Personalakt im SharePoint
ECM in der Praxis: Personalakt im SharePointECM in der Praxis: Personalakt im SharePoint
ECM in der Praxis: Personalakt im SharePointChristian Kiesewetter
 
When to Use What? How to Leverage Relevant Social Media Channels
When to Use What? How to Leverage Relevant Social Media ChannelsWhen to Use What? How to Leverage Relevant Social Media Channels
When to Use What? How to Leverage Relevant Social Media ChannelsAvePoint
 
Achieving Built-in Governance with AvePoint
Achieving Built-in Governance with AvePointAchieving Built-in Governance with AvePoint
Achieving Built-in Governance with AvePointAvePoint
 
UC Internet Kampagnenpaket 2013-04-15
UC Internet Kampagnenpaket 2013-04-15UC Internet Kampagnenpaket 2013-04-15
UC Internet Kampagnenpaket 2013-04-15Thorsten Firzlaff
 
Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...
Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...
Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...Dennis Hobmaier
 
Fast Track Project Management Success with Project Online
Fast Track Project Management Success with Project OnlineFast Track Project Management Success with Project Online
Fast Track Project Management Success with Project OnlineAvePoint
 
Workflow Management mit SharePoint und Nintex (Vorgehen)
Workflow Management mit SharePoint und Nintex (Vorgehen)Workflow Management mit SharePoint und Nintex (Vorgehen)
Workflow Management mit SharePoint und Nintex (Vorgehen)IOZ AG
 
Administrationsschulung Grundlagen
Administrationsschulung GrundlagenAdministrationsschulung Grundlagen
Administrationsschulung GrundlagenMichael Hertel
 
2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...
2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...
2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...Thorsten Firzlaff
 
Deliver SharePoint Success: Drive Business Value with Winning Governance and ...
Deliver SharePoint Success: Drive Business Value with Winning Governance and ...Deliver SharePoint Success: Drive Business Value with Winning Governance and ...
Deliver SharePoint Success: Drive Business Value with Winning Governance and ...AvePoint
 
Using Visual Studio to Build SharePoint 2010 Solutions
Using Visual Studio to Build SharePoint 2010 SolutionsUsing Visual Studio to Build SharePoint 2010 Solutions
Using Visual Studio to Build SharePoint 2010 SolutionsRandy Williams
 
Sharepoint Toolbox
Sharepoint ToolboxSharepoint Toolbox
Sharepoint Toolboxbusitec GmbH
 
Share point rbs in depth englisch
Share point rbs in depth englischShare point rbs in depth englisch
Share point rbs in depth englischSamuel Zürcher
 
CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...
CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...
CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...Hudu Zakaria
 

Viewers also liked (20)

2011 01-11-SharePoint UserGroup Düsseldorf SPDashboard
2011 01-11-SharePoint UserGroup Düsseldorf  SPDashboard2011 01-11-SharePoint UserGroup Düsseldorf  SPDashboard
2011 01-11-SharePoint UserGroup Düsseldorf SPDashboard
 
2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...
2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...
2012-10-20 Workshop SharePoint Days - Business Prozesse mit SharePoint, InfoP...
 
Fast Track Project Management Success with Project Online
Fast Track Project Management Success with Project OnlineFast Track Project Management Success with Project Online
Fast Track Project Management Success with Project Online
 
2013 09-05 Bechtle IT Forum Rhein Main
2013 09-05 Bechtle IT Forum Rhein Main2013 09-05 Bechtle IT Forum Rhein Main
2013 09-05 Bechtle IT Forum Rhein Main
 
Integrate your business - SharePoint 2010 and Microsoft Dynamics NAV
Integrate your business - SharePoint 2010 and Microsoft Dynamics NAVIntegrate your business - SharePoint 2010 and Microsoft Dynamics NAV
Integrate your business - SharePoint 2010 and Microsoft Dynamics NAV
 
2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...
2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...
2013 06-12-ShareConf - Nintex 2013 – Neuerungen im Bereich Mobil, Social und ...
 
ECM in der Praxis: Personalakt im SharePoint
ECM in der Praxis: Personalakt im SharePointECM in der Praxis: Personalakt im SharePoint
ECM in der Praxis: Personalakt im SharePoint
 
When to Use What? How to Leverage Relevant Social Media Channels
When to Use What? How to Leverage Relevant Social Media ChannelsWhen to Use What? How to Leverage Relevant Social Media Channels
When to Use What? How to Leverage Relevant Social Media Channels
 
Achieving Built-in Governance with AvePoint
Achieving Built-in Governance with AvePointAchieving Built-in Governance with AvePoint
Achieving Built-in Governance with AvePoint
 
UC Internet Kampagnenpaket 2013-04-15
UC Internet Kampagnenpaket 2013-04-15UC Internet Kampagnenpaket 2013-04-15
UC Internet Kampagnenpaket 2013-04-15
 
Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...
Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...
Collaboration mit SharePoint - erfolgreiche Zusammenarbeit als Gemeinschaftsp...
 
Fast Track Project Management Success with Project Online
Fast Track Project Management Success with Project OnlineFast Track Project Management Success with Project Online
Fast Track Project Management Success with Project Online
 
Workflow Management mit SharePoint und Nintex (Vorgehen)
Workflow Management mit SharePoint und Nintex (Vorgehen)Workflow Management mit SharePoint und Nintex (Vorgehen)
Workflow Management mit SharePoint und Nintex (Vorgehen)
 
Administrationsschulung Grundlagen
Administrationsschulung GrundlagenAdministrationsschulung Grundlagen
Administrationsschulung Grundlagen
 
2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...
2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...
2012-06-25 SharePoint Konferenz Wien - Bessere Kundenbindung durch Social Med...
 
Deliver SharePoint Success: Drive Business Value with Winning Governance and ...
Deliver SharePoint Success: Drive Business Value with Winning Governance and ...Deliver SharePoint Success: Drive Business Value with Winning Governance and ...
Deliver SharePoint Success: Drive Business Value with Winning Governance and ...
 
Using Visual Studio to Build SharePoint 2010 Solutions
Using Visual Studio to Build SharePoint 2010 SolutionsUsing Visual Studio to Build SharePoint 2010 Solutions
Using Visual Studio to Build SharePoint 2010 Solutions
 
Sharepoint Toolbox
Sharepoint ToolboxSharepoint Toolbox
Sharepoint Toolbox
 
Share point rbs in depth englisch
Share point rbs in depth englischShare point rbs in depth englisch
Share point rbs in depth englisch
 
CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...
CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...
CONCEPT PAPER ON PARTICIPATORY VIDEO AND INNOVATION FOR SOCIAL CHANGE TO OMPT...
 

Similar to Putting on Your Design Bootstraps: Intro to Responsive Design and SharePoint

Putting on your Design Bootstraps, Intro to Responsive Design in SharePoint
Putting on your Design Bootstraps, Intro to Responsive Design in SharePointPutting on your Design Bootstraps, Intro to Responsive Design in SharePoint
Putting on your Design Bootstraps, Intro to Responsive Design in SharePointD'arce Hess
 
Themes & Composed Looks in SharePoint 2013 & O365
Themes & Composed Looks in SharePoint 2013 & O365Themes & Composed Looks in SharePoint 2013 & O365
Themes & Composed Looks in SharePoint 2013 & O365D'arce Hess
 
Custom User Interface Creation in SP2013/O365
Custom User Interface Creation in SP2013/O365Custom User Interface Creation in SP2013/O365
Custom User Interface Creation in SP2013/O365AvePoint
 
Custom User Interface Creation with Content Types in Sharepoint 2013/O365
Custom User Interface Creation with Content Types in Sharepoint 2013/O365Custom User Interface Creation with Content Types in Sharepoint 2013/O365
Custom User Interface Creation with Content Types in Sharepoint 2013/O365D'arce Hess
 
Themes & Composed Looks for SharePoint 2013 and Office 365
Themes & Composed Looks for SharePoint 2013 and Office 365Themes & Composed Looks for SharePoint 2013 and Office 365
Themes & Composed Looks for SharePoint 2013 and Office 365AvePoint
 
Beyond the hype: Management and Governance for Office 365
Beyond the hype: Management and Governance for Office 365Beyond the hype: Management and Governance for Office 365
Beyond the hype: Management and Governance for Office 365Roberto Vazquez Delgado
 
Migration und ihre Tücken @ShareConf
Migration und ihre Tücken @ShareConfMigration und ihre Tücken @ShareConf
Migration und ihre Tücken @ShareConfDennis Hobmaier
 
Migration und ihre Tücken – Welche Anpassungen gibt es?
Migration und ihre Tücken – Welche Anpassungen gibt es?Migration und ihre Tücken – Welche Anpassungen gibt es?
Migration und ihre Tücken – Welche Anpassungen gibt es?Dennis Hobmaier
 
How to Effectively Prepare Your Organization's SharePoint Journey Into the Cloud
How to Effectively Prepare Your Organization's SharePoint Journey Into the CloudHow to Effectively Prepare Your Organization's SharePoint Journey Into the Cloud
How to Effectively Prepare Your Organization's SharePoint Journey Into the CloudDux Raymond Sy
 
How to Utilize the Right Project Management Solution
How to Utilize the Right Project Management SolutionHow to Utilize the Right Project Management Solution
How to Utilize the Right Project Management SolutionDux Raymond Sy
 
SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)
SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)
SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)Dennis Hobmaier
 
SharePoint Governance - Jetzt mit Struktur @CollabDays
SharePoint Governance - Jetzt mit Struktur @CollabDaysSharePoint Governance - Jetzt mit Struktur @CollabDays
SharePoint Governance - Jetzt mit Struktur @CollabDaysDennis Hobmaier
 
How to Best Develop Requirements for SharePoint Projects
How to Best Develop Requirements for SharePoint ProjectsHow to Best Develop Requirements for SharePoint Projects
How to Best Develop Requirements for SharePoint ProjectsDux Raymond Sy
 
Fast Track Project Management Success w/ #Office365 Project Online
Fast Track Project Management Success w/ #Office365 Project OnlineFast Track Project Management Success w/ #Office365 Project Online
Fast Track Project Management Success w/ #Office365 Project OnlineDux Raymond Sy
 
Five ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoptionFive ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoptionGonzalo Marcos Ansoain
 
Five ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoptionFive ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoptionGonzalo Marcos
 
O365con14 - the 4 major steps to migrate content from any on-premise source i...
O365con14 - the 4 major steps to migrate content from any on-premise source i...O365con14 - the 4 major steps to migrate content from any on-premise source i...
O365con14 - the 4 major steps to migrate content from any on-premise source i...NCCOMMS
 
CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...
CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...
CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...Benoit Jester
 

Similar to Putting on Your Design Bootstraps: Intro to Responsive Design and SharePoint (20)

Putting on your Design Bootstraps, Intro to Responsive Design in SharePoint
Putting on your Design Bootstraps, Intro to Responsive Design in SharePointPutting on your Design Bootstraps, Intro to Responsive Design in SharePoint
Putting on your Design Bootstraps, Intro to Responsive Design in SharePoint
 
Themes & Composed Looks in SharePoint 2013 & O365
Themes & Composed Looks in SharePoint 2013 & O365Themes & Composed Looks in SharePoint 2013 & O365
Themes & Composed Looks in SharePoint 2013 & O365
 
Custom User Interface Creation in SP2013/O365
Custom User Interface Creation in SP2013/O365Custom User Interface Creation in SP2013/O365
Custom User Interface Creation in SP2013/O365
 
Custom User Interface Creation with Content Types in Sharepoint 2013/O365
Custom User Interface Creation with Content Types in Sharepoint 2013/O365Custom User Interface Creation with Content Types in Sharepoint 2013/O365
Custom User Interface Creation with Content Types in Sharepoint 2013/O365
 
Themes & Composed Looks for SharePoint 2013 and Office 365
Themes & Composed Looks for SharePoint 2013 and Office 365Themes & Composed Looks for SharePoint 2013 and Office 365
Themes & Composed Looks for SharePoint 2013 and Office 365
 
Beyond the hype: Management and Governance for Office 365
Beyond the hype: Management and Governance for Office 365Beyond the hype: Management and Governance for Office 365
Beyond the hype: Management and Governance for Office 365
 
Migration und ihre Tücken @ShareConf
Migration und ihre Tücken @ShareConfMigration und ihre Tücken @ShareConf
Migration und ihre Tücken @ShareConf
 
Migration und ihre Tücken – Welche Anpassungen gibt es?
Migration und ihre Tücken – Welche Anpassungen gibt es?Migration und ihre Tücken – Welche Anpassungen gibt es?
Migration und ihre Tücken – Welche Anpassungen gibt es?
 
How to Effectively Prepare Your Organization's SharePoint Journey Into the Cloud
How to Effectively Prepare Your Organization's SharePoint Journey Into the CloudHow to Effectively Prepare Your Organization's SharePoint Journey Into the Cloud
How to Effectively Prepare Your Organization's SharePoint Journey Into the Cloud
 
How to Utilize the Right Project Management Solution
How to Utilize the Right Project Management SolutionHow to Utilize the Right Project Management Solution
How to Utilize the Right Project Management Solution
 
SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)
SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)
SharePoint Governance - Jetzt mit Struktur (6. Alzenauer Innovationstage)
 
You're in the cloud! Great! Now what?
You're in the cloud! Great! Now what?You're in the cloud! Great! Now what?
You're in the cloud! Great! Now what?
 
SharePoint Governance - Jetzt mit Struktur @CollabDays
SharePoint Governance - Jetzt mit Struktur @CollabDaysSharePoint Governance - Jetzt mit Struktur @CollabDays
SharePoint Governance - Jetzt mit Struktur @CollabDays
 
How to Best Develop Requirements for SharePoint Projects
How to Best Develop Requirements for SharePoint ProjectsHow to Best Develop Requirements for SharePoint Projects
How to Best Develop Requirements for SharePoint Projects
 
Fast Track Project Management Success w/ #Office365 Project Online
Fast Track Project Management Success w/ #Office365 Project OnlineFast Track Project Management Success w/ #Office365 Project Online
Fast Track Project Management Success w/ #Office365 Project Online
 
Five ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoptionFive ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoption
 
Five ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoptionFive ways to smash barriers to SharePoint adoption
Five ways to smash barriers to SharePoint adoption
 
You’re In the Cloud. Great! Now What?
You’re In the Cloud. Great! Now What?You’re In the Cloud. Great! Now What?
You’re In the Cloud. Great! Now What?
 
O365con14 - the 4 major steps to migrate content from any on-premise source i...
O365con14 - the 4 major steps to migrate content from any on-premise source i...O365con14 - the 4 major steps to migrate content from any on-premise source i...
O365con14 - the 4 major steps to migrate content from any on-premise source i...
 
CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...
CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...
CUE - Les différences entre On-Premises et le Cloud pour SharePoint (Azure IA...
 

More from AvePoint

Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...
Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...
Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...AvePoint
 
Practical Tips and Tricks to Drive SharePoint Adoption
Practical Tips and Tricks to Drive SharePoint AdoptionPractical Tips and Tricks to Drive SharePoint Adoption
Practical Tips and Tricks to Drive SharePoint AdoptionAvePoint
 
AvePoint: Migration as Easy as 1, 2, 3
AvePoint: Migration as Easy as 1, 2, 3AvePoint: Migration as Easy as 1, 2, 3
AvePoint: Migration as Easy as 1, 2, 3AvePoint
 
AvePoint Cloud Arcade: How to Win the Office 365 Management Game
AvePoint Cloud Arcade: How to Win the Office 365 Management GameAvePoint Cloud Arcade: How to Win the Office 365 Management Game
AvePoint Cloud Arcade: How to Win the Office 365 Management GameAvePoint
 
SharePoint as a Records Management System
SharePoint as a Records Management SystemSharePoint as a Records Management System
SharePoint as a Records Management SystemAvePoint
 
Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...
Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...
Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...AvePoint
 
Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...
Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...
Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...AvePoint
 
he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...
he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...
he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...AvePoint
 
SPTechCon Lightning Talk
SPTechCon Lightning TalkSPTechCon Lightning Talk
SPTechCon Lightning TalkAvePoint
 
Social in hybriden SharePoint 2016-Umgebungen
Social in hybriden SharePoint 2016-UmgebungenSocial in hybriden SharePoint 2016-Umgebungen
Social in hybriden SharePoint 2016-UmgebungenAvePoint
 
3 Steps to Automate Compliance for Healthcare Organizations
3 Steps to Automate Compliance for Healthcare Organizations3 Steps to Automate Compliance for Healthcare Organizations
3 Steps to Automate Compliance for Healthcare OrganizationsAvePoint
 
AvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your Way
AvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your WayAvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your Way
AvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your WayAvePoint
 

More from AvePoint (12)

Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...
Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...
Microsoft Teams, Office 365 Groups, SharePoint, Yammer...What Should I Use, a...
 
Practical Tips and Tricks to Drive SharePoint Adoption
Practical Tips and Tricks to Drive SharePoint AdoptionPractical Tips and Tricks to Drive SharePoint Adoption
Practical Tips and Tricks to Drive SharePoint Adoption
 
AvePoint: Migration as Easy as 1, 2, 3
AvePoint: Migration as Easy as 1, 2, 3AvePoint: Migration as Easy as 1, 2, 3
AvePoint: Migration as Easy as 1, 2, 3
 
AvePoint Cloud Arcade: How to Win the Office 365 Management Game
AvePoint Cloud Arcade: How to Win the Office 365 Management GameAvePoint Cloud Arcade: How to Win the Office 365 Management Game
AvePoint Cloud Arcade: How to Win the Office 365 Management Game
 
SharePoint as a Records Management System
SharePoint as a Records Management SystemSharePoint as a Records Management System
SharePoint as a Records Management System
 
Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...
Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...
Lead the Responsive Organization Revolution: How to Inspire, Transform and Fa...
 
Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...
Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...
Beyond SharePoint Deployment: How Can IT Inspire, Motivate, and Drive Sustain...
 
he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...
he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...
he Future of SharePoint is Now – Tipps für On-Premise, Cloud oder Hybride Mig...
 
SPTechCon Lightning Talk
SPTechCon Lightning TalkSPTechCon Lightning Talk
SPTechCon Lightning Talk
 
Social in hybriden SharePoint 2016-Umgebungen
Social in hybriden SharePoint 2016-UmgebungenSocial in hybriden SharePoint 2016-Umgebungen
Social in hybriden SharePoint 2016-Umgebungen
 
3 Steps to Automate Compliance for Healthcare Organizations
3 Steps to Automate Compliance for Healthcare Organizations3 Steps to Automate Compliance for Healthcare Organizations
3 Steps to Automate Compliance for Healthcare Organizations
 
AvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your Way
AvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your WayAvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your Way
AvePoint Webinar - Microsoft Office 365 or Windows Azure: Have it Your Way
 

Recently uploaded

Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
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
 
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
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 

Recently uploaded (20)

Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
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
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

Putting on Your Design Bootstraps: Intro to Responsive Design and SharePoint

  • 1. Accessible content is available upon request. Putting on your Design Bootstraps Intro to Responsive Design & SharePoint By: D’arce Hess
  • 2. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
  • 3. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.
  • 4. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. @darcehess https://www.linkedin.com/in/darcehess Darce.Hess@avepoint.com D’arce Hess
  • 5. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Introduction References Responsive vs. Adaptive Bootstrap Integration with SharePoint QuestionsBest PracticesIt’s a Bugs Life Agenda
  • 6. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. INTRODUCTION
  • 7. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. RESPONSIVE DESIGN Coined by Ethan Marcotte in “A List Apart” article. Requires: • Media Queries • Flexible Images • Grid
  • 8. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. More than meets the eye.
  • 9. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. MobileTabletDesktop
  • 10. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. ADAPTIVE DESIGN Distinct layouts for multiple screen sizes, and the layout used depends on the screen size used.
  • 11. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. COMPONENTS
  • 12. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Grid Flexible ImagesMedia Queries WHAT DO YOU NEED?
  • 13. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. THE GRID 12 Columns Allows for Design to be easily broken up into common layouts.
  • 14. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. MEDIA QUERIES CSS3 module allowing content rendering to adapt to conditions such as screen resolution
  • 15. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. FLEXIBLE IMAGES Images created in correct format and size to allow for CSS re-sizing based on screen width
  • 16. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. BOOTSTRAP 3
  • 17. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. ABOUT BOOTSTRAP FRAMEWORK Supports both Sass and Less solutions for development. Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web. Lots of added functionality, i.e. Glyphicons, Navigation & responsive embed
  • 18. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. PROS vs CONS Pros Cons • Allows for faster prototyping • Grid has already been established • Easy to engage newer web developers • SASS and LESS • Can be bloated • Some resets need to be made to work with SharePoint • May be too restrictive for experienced developers
  • 19. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. UNDERSTANDING THE STRUCTURE
  • 20. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. IMPLEMENT INTO MASTER PAGE
  • 21. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Set up your frame the same and then bring in the webpart containers inside of your columns This is a page layout example IMPLEMENT INTO PAGE LAYOUT
  • 22. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Both of these layouts us the “Wiki” page layout. These are out-of-the-box layouts that do not come with Publishing Features enabled. This means you cannot create a custom layout for these pages. You can make them responsive by adjusting the tables in the layout, but it is very difficult to do. MY SITES & TEAM SITES
  • 23. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. DEMO
  • 24. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Sass is a pre-processor for CSS Compiles to WHAT IS SASS (NOT SAS)
  • 25. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Mixins Do you remember your order of operations?
  • 26. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Mindscape Web Workbench SassyStudio SASS SUPPORT IN VISUAL STUDIO
  • 27. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. IT’S A BUGS LIFE
  • 28. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Bootstrap uses box-sizing: border-box; This means that padding does not affect the computed width of an element. SharePoint uses box-sizing: content-box; This means that if you add a border to an element it equals the element + 2px. THE BOX MODEL
  • 29. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. CSS OVERIDES NEEDED
  • 30. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. BEST PRACTICES
  • 31. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. WITH GREAT POWER… Just because you can, doesn’t mean that you should! Time to think about the user experience: • Do you want your users to scroll forever when down on a mobile device? • That beautiful banner image and rotator do not add any value on a phone. • Mobile users are using data to load your site, size of images and files matters. Time to optimize. • Think of options for links and buttons to be easier to use for touch. • Remember, there is no hover functionality on a mobile device
  • 32. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. ON PREM OR CLOUD? • More control over Master Page • Create Custom Page Layouts • Use javascript injections for specific functionality • Advised not to alter Master Page • Create Custom Page Layouts • Use alternative CSS • Use javascript injections for specific functionality
  • 33. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. Powershell Manual Deployment “Add-in” Model/CSOM Third-Party Solution Multiple Site Collection Deployment
  • 34. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc. QUESTION & ANSWER
  • 35. © AvePoint, Inc. All rights reserved. Confidential and proprietary information of AvePoint, Inc. No part of this may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written consent of AvePoint, Inc.