SlideShare a Scribd company logo
1 of 26
Download to read offline
“Poorly executed navigation can
spell disaster for user experience.”
                          -Gene Crawford
Roadmap

What is RWD?

How your content strategy plays into RWD & navigation.

Manipulate WordPress for a better responsive nav.

Navigation patterns and examples.
What is Responsive Web Design?




 Where can I learn about RWD?
 1. bradrost.github.com/this-is-responsive
 2. teamtreehouse.com
 3. google.com

 View great examples at: mediaqueri.es
Content Strategy
1. What do I want my users to see on mobile?

2. Should I show a “lite” version of my site?

3. But aren’t users within a different context when
viewing my site on their phone?
Retro-fitting an existing website
     to become responsive
          can be difficult.

Especially one with a large menu.
“Use mobile as an excuse
to revisit your navigation.”
                       -Brad Frost
Manipulate WordPress

1. Target your navigation through better CSS classes.

2. Use multiple menus if necessary

3. Use custom links for top-level menu items
Better CSS Classes
1. Add a “walker” to your wp_nav_menu:

   <?php wp_nav_menu( array(
     'theme_location' => 'primary',
     'container' => false,
     'walker'=> new Bootstrap_Walker_Nav_Menu,
     'menu_class' => 'nav'
     ) ); ?>




                      https://gist.github.com/erickarbe/4192494




2. Now use some JS to target your Nav:

   http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js
Add Your Own Classes
Register a Second Menu

register_nav_menus( array(
  'primary' => __( 'Primary Menu', 'base' ),
  'mobile' => __( 'Mobile Menu', 'base' )
) );




  .primary_menu { display: none; }
  .mobile_menu { display: block; }

  @media all and (min-width:768px) {
    .primary_menu { display: block; }
    .mobile_menu { display: none; }
  }




**Useful when providing a menu in the header & footer**
Take Advantage of Custom Links
<ul>
  <li><a href="/home/">Home</a></li>
  <li class="has-submenu" ><a class="dropdown-toggle" href="#">About</a>
    <ul class="dropdown-menu">
      <li><a href="/about/">Overview</a></li>
      <li><a href="/overview/">Overview</a></li>
      <li><a href="/more-about/">More About</a></li>
    </ul>
  </li>
  <li><a href="/contact/">Contact</a></li>
</ul>




**Use hash tags for top level menu items with sub-nav**
Navigation Patterns
Just Add Padding
•   Very easy to implement
•   User knows where your nav is
•   No JS required


•   Drawbacks:
•   Won’t work with sub-nav
•   Can look awkward at certain points



•   Links:
•   http://www.inboxwarriors.co.uk/
•   http://responsivenavigation.net/examples/simple-padding/
Grid / Percentage Based

•   Easy to touch - buttons are great size
•   Looks terrific & scales nicely
•   No JS required


•   Drawbacks:
•   Can’t really work with sub-navigation
    (unless you hide the sub-nav)


•   Links:
•   http://css-tricks.com
•   http://traveloregon.com/
Multi-Toggle / Accordion

•   Accordion style menu
•   Great solution for large menus
•   Provides good user experience


•   Drawbacks:
•   Usually requires JS (doesn’t need it)
•   Can push page content way down



•   Links:
•   http://www.microsoft.com/en-us/default.aspx
Footer Nav
•   Great concept - content first
•   Pretty easy to implement
•   Works across all browsers
•   “Give ‘em content, not menus”

•   Drawbacks:
•   Provides an awkward jump to the
    footer - especially on long pages
•   Usually need to maintain two sets of
    navigation


•   Links:
•   http://aneventapart.com/
•   http://responsivenavigation.net/examples/footer-
    list/
Select Nav
•   Can be super easy to implement
•   Easy to retro-fit an existing site
•   Works well with large menus
•   Uses native UI controls

•   Drawbacks:
•   Not incredibly sexy (tough to style)
•   Usability is just OK
•   Requires JS



•   Links:
•   http://tinynav.viljamis.com/
•   http://lukaszfiszer.github.com/selectnav.js/
Off-Canvas / Page
Slide
•   Facebook style off-canvas menu
•   Very slick when used with animation
•   Terrific UX


•   Drawbacks:
•   Can’t be used with a huge menu


•   Links:
•   https://github.com/torkiljohnsen/swipe
•   http://jasonweaver.name/lab/offcanvas/




*Yes, I know this facebook screenshot is not a responsive site - it’s just
an example of how this looks.
http://www.flickr.com/photos/oliviahouse32/3347768206/




    Think “Touch”
Optimal Sizes for Touch Elements

•   Average human finger pad is 10-14mm
•   Apple suggests a 44x44 points
    (basically, 44px) touch target size
    (11.6mm)
•   Windows suggests a 9x9mm touch
    target size
•   Nokia suggests a 7x7mm touch target
    size




        photo courtesy of Luke Wroblewski | www.lukew.com
Additionally...

* {
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 }


 http://paulirish.com/2012/box-sizing-border-box-ftw/

 http://html5please.com/#box-sizing

 https://github.com/Schepp/box-sizing-polyfill

 http://modernizr.com/ (.no-box-sizing)
Resources
Better WalkerNav: https://gist.github.com/erickarbe/4192494

Drop-down JavaScript: http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js

http://erickar.be/blog/my-experience-with-navigation-in-responsive-design
http://responsivenavigation.net/

http://mediaqueri.es/
http://www.responsinator.com
http://lab.maltewassermann.com/viewport-resizer/

http://tinynav.viljamis.com/
http://lukaszfiszer.github.com/selectnav.js/

http://designshack.net/articles/css/code-a-responsive-navigation-menu/ (Fluid Grid Layout)
Thank You!
   Erick Arbé
   @erickarbe

More Related Content

What's hot

Responsive Navigation Patterns | نویگیشن در طراحی ریسپانسیو
Responsive Navigation Patterns | نویگیشن در طراحی ریسپانسیوResponsive Navigation Patterns | نویگیشن در طراحی ریسپانسیو
Responsive Navigation Patterns | نویگیشن در طراحی ریسپانسیوMohsen Hosseinian
 
Responsive web design
Responsive web designResponsive web design
Responsive web designRuss Weakley
 
Speak the Web 15.02.2010
Speak the Web 15.02.2010Speak the Web 15.02.2010
Speak the Web 15.02.2010Patrick Lauke
 
WordPress Multisite Network Do’s & Don’ts
WordPress Multisite Network Do’s & Don’tsWordPress Multisite Network Do’s & Don’ts
WordPress Multisite Network Do’s & Don’tsTaylor McCaslin
 
Prototyping web apps with Wordpress
Prototyping web apps with WordpressPrototyping web apps with Wordpress
Prototyping web apps with WordpressZeeen
 
How to install and setup WordPress Multisite Network
How to install and setup WordPress Multisite NetworkHow to install and setup WordPress Multisite Network
How to install and setup WordPress Multisite NetworkGeorge Bikas
 
HOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORK
HOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORKHOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORK
HOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORKGeorge Bikas
 
Superfish menus
Superfish menusSuperfish menus
Superfish menuspoka_dan
 
Understanding WordPress Multisite
Understanding WordPress MultisiteUnderstanding WordPress Multisite
Understanding WordPress MultisiteRyan Imel
 
Slowcooked wp
Slowcooked wpSlowcooked wp
Slowcooked wpjoshfeck
 
HTML5 and friends - standards>next Manchester 24.11.2010
HTML5 and friends - standards>next Manchester 24.11.2010HTML5 and friends - standards>next Manchester 24.11.2010
HTML5 and friends - standards>next Manchester 24.11.2010Patrick Lauke
 

What's hot (15)

Responsive Navigation Patterns | نویگیشن در طراحی ریسپانسیو
Responsive Navigation Patterns | نویگیشن در طراحی ریسپانسیوResponsive Navigation Patterns | نویگیشن در طراحی ریسپانسیو
Responsive Navigation Patterns | نویگیشن در طراحی ریسپانسیو
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Boot strap
Boot strapBoot strap
Boot strap
 
Speak the Web 15.02.2010
Speak the Web 15.02.2010Speak the Web 15.02.2010
Speak the Web 15.02.2010
 
WordPress Multisite Network Do’s & Don’ts
WordPress Multisite Network Do’s & Don’tsWordPress Multisite Network Do’s & Don’ts
WordPress Multisite Network Do’s & Don’ts
 
WordPress Multi-Network
WordPress Multi-NetworkWordPress Multi-Network
WordPress Multi-Network
 
Prototyping web apps with Wordpress
Prototyping web apps with WordpressPrototyping web apps with Wordpress
Prototyping web apps with Wordpress
 
WordPress Multisite Q&A
WordPress Multisite Q&AWordPress Multisite Q&A
WordPress Multisite Q&A
 
How to install and setup WordPress Multisite Network
How to install and setup WordPress Multisite NetworkHow to install and setup WordPress Multisite Network
How to install and setup WordPress Multisite Network
 
HOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORK
HOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORKHOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORK
HOW TO INSTALL AND SETUP WORDPRESS MULTISITE NETWORK
 
Superfish menus
Superfish menusSuperfish menus
Superfish menus
 
WordPress Use Cases
WordPress Use CasesWordPress Use Cases
WordPress Use Cases
 
Understanding WordPress Multisite
Understanding WordPress MultisiteUnderstanding WordPress Multisite
Understanding WordPress Multisite
 
Slowcooked wp
Slowcooked wpSlowcooked wp
Slowcooked wp
 
HTML5 and friends - standards>next Manchester 24.11.2010
HTML5 and friends - standards>next Manchester 24.11.2010HTML5 and friends - standards>next Manchester 24.11.2010
HTML5 and friends - standards>next Manchester 24.11.2010
 

Viewers also liked

Administracion medicion
Administracion medicionAdministracion medicion
Administracion medicionLourdes Ortiz
 
Internet safety
Internet safetyInternet safety
Internet safetymartdale
 
Prototype and test storyboard
Prototype and test storyboardPrototype and test storyboard
Prototype and test storyboardSally Graham
 
ItSMF 23 November 2012 - GREENCLOUDS - Cloud Service Brokerage
ItSMF 23 November 2012 - GREENCLOUDS - Cloud Service BrokerageItSMF 23 November 2012 - GREENCLOUDS - Cloud Service Brokerage
ItSMF 23 November 2012 - GREENCLOUDS - Cloud Service BrokerageGreenclouds
 
Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012
Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012
Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012Greenclouds
 
Greenclouds Presentation for Jury Meeting TIMMIE Award.
Greenclouds Presentation for Jury Meeting TIMMIE Award.Greenclouds Presentation for Jury Meeting TIMMIE Award.
Greenclouds Presentation for Jury Meeting TIMMIE Award.Greenclouds
 
Cómo es el pedagógico umce
Cómo es el pedagógico umceCómo es el pedagógico umce
Cómo es el pedagógico umceMariela Barrera
 
The state of southern cameroons (autosaved)
The state of southern cameroons (autosaved)The state of southern cameroons (autosaved)
The state of southern cameroons (autosaved)Njoh Litumbe
 
Navigation in Responsive Design
Navigation in Responsive DesignNavigation in Responsive Design
Navigation in Responsive Designopenchamp
 
WordPress Child Themes
WordPress Child ThemesWordPress Child Themes
WordPress Child Themesopenchamp
 
Hacking WordPress: Making WP Work For You
Hacking WordPress: Making WP Work For YouHacking WordPress: Making WP Work For You
Hacking WordPress: Making WP Work For Youopenchamp
 
Design of reinforced concrete as per aci 318
Design of reinforced concrete as per aci 318Design of reinforced concrete as per aci 318
Design of reinforced concrete as per aci 318Jose Fabricio
 
【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介
【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介
【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介Mobile Factory, Inc.
 

Viewers also liked (18)

Administracion medicion
Administracion medicionAdministracion medicion
Administracion medicion
 
Internet safety
Internet safetyInternet safety
Internet safety
 
Prototype and test storyboard
Prototype and test storyboardPrototype and test storyboard
Prototype and test storyboard
 
ItSMF 23 November 2012 - GREENCLOUDS - Cloud Service Brokerage
ItSMF 23 November 2012 - GREENCLOUDS - Cloud Service BrokerageItSMF 23 November 2012 - GREENCLOUDS - Cloud Service Brokerage
ItSMF 23 November 2012 - GREENCLOUDS - Cloud Service Brokerage
 
Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012
Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012
Presentation Greenclouds - Accenture Innovation Awards - 8 november 2012
 
Greenclouds Presentation for Jury Meeting TIMMIE Award.
Greenclouds Presentation for Jury Meeting TIMMIE Award.Greenclouds Presentation for Jury Meeting TIMMIE Award.
Greenclouds Presentation for Jury Meeting TIMMIE Award.
 
Cómo es el pedagógico umce
Cómo es el pedagógico umceCómo es el pedagógico umce
Cómo es el pedagógico umce
 
The state of southern cameroons (autosaved)
The state of southern cameroons (autosaved)The state of southern cameroons (autosaved)
The state of southern cameroons (autosaved)
 
Navigation in Responsive Design
Navigation in Responsive DesignNavigation in Responsive Design
Navigation in Responsive Design
 
WordPress Child Themes
WordPress Child ThemesWordPress Child Themes
WordPress Child Themes
 
Hacking WordPress: Making WP Work For You
Hacking WordPress: Making WP Work For YouHacking WordPress: Making WP Work For You
Hacking WordPress: Making WP Work For You
 
Design of reinforced concrete as per aci 318
Design of reinforced concrete as per aci 318Design of reinforced concrete as per aci 318
Design of reinforced concrete as per aci 318
 
Presentacion
PresentacionPresentacion
Presentacion
 
Presentacion
PresentacionPresentacion
Presentacion
 
4.Detalles
4.Detalles4.Detalles
4.Detalles
 
Presentacion
PresentacionPresentacion
Presentacion
 
JIN SEI KAN
JIN SEI KANJIN SEI KAN
JIN SEI KAN
 
【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介
【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介
【駅すぱあとWebサービス】コンシューマサービスにおける事例紹介
 

Similar to WordPress Navigation in Responsive Design

Responsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNNResponsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNNgravityworksdd
 
Multi screen HTML5
Multi screen HTML5Multi screen HTML5
Multi screen HTML5Ron Reiter
 
Building Responsive Websites with Drupal
Building Responsive Websites with DrupalBuilding Responsive Websites with Drupal
Building Responsive Websites with DrupalSuzanne Dergacheva
 
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012Suzanne Dergacheva
 
FITC - Bootstrap Unleashed
FITC - Bootstrap UnleashedFITC - Bootstrap Unleashed
FITC - Bootstrap UnleashedRami Sayar
 
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...gravityworksdd
 
Node.js 101
 Node.js 101 Node.js 101
Node.js 101FITC
 
Eye candy for your iPhone
Eye candy for your iPhoneEye candy for your iPhone
Eye candy for your iPhoneBrian Shim
 
Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Thomas Carney
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web DesignMike Wilcox
 
Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2Andrea Robertson
 
User experience and interactions design
User experience and interactions design User experience and interactions design
User experience and interactions design Rakesh Jha
 
Lab#10 navigation, links and hover rollovers
Lab#10 navigation, links and hover rolloversLab#10 navigation, links and hover rollovers
Lab#10 navigation, links and hover rolloversYaowaluck Promdee
 
Responsive Web Design_2013
Responsive Web Design_2013Responsive Web Design_2013
Responsive Web Design_2013Achieve Internet
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignJulia Vi
 
UX design for every screen
UX design for every screenUX design for every screen
UX design for every screenFour Kitchens
 
Building responsive web mobile mapping applications
Building responsive web mobile mapping applicationsBuilding responsive web mobile mapping applications
Building responsive web mobile mapping applicationsAllan Laframboise
 
Building Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalFour Kitchens
 
Business of Front-end Web Development
Business of Front-end Web DevelopmentBusiness of Front-end Web Development
Business of Front-end Web DevelopmentRachel Andrew
 
The future of BYU web design
The future of BYU web designThe future of BYU web design
The future of BYU web designNate Walton
 

Similar to WordPress Navigation in Responsive Design (20)

Responsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNNResponsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNN
 
Multi screen HTML5
Multi screen HTML5Multi screen HTML5
Multi screen HTML5
 
Building Responsive Websites with Drupal
Building Responsive Websites with DrupalBuilding Responsive Websites with Drupal
Building Responsive Websites with Drupal
 
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
 
FITC - Bootstrap Unleashed
FITC - Bootstrap UnleashedFITC - Bootstrap Unleashed
FITC - Bootstrap Unleashed
 
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
 
Node.js 101
 Node.js 101 Node.js 101
Node.js 101
 
Eye candy for your iPhone
Eye candy for your iPhoneEye candy for your iPhone
Eye candy for your iPhone
 
Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Responsivedesign 7-3-2012
Responsivedesign 7-3-2012
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web Design
 
Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2
 
User experience and interactions design
User experience and interactions design User experience and interactions design
User experience and interactions design
 
Lab#10 navigation, links and hover rollovers
Lab#10 navigation, links and hover rolloversLab#10 navigation, links and hover rollovers
Lab#10 navigation, links and hover rollovers
 
Responsive Web Design_2013
Responsive Web Design_2013Responsive Web Design_2013
Responsive Web Design_2013
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
UX design for every screen
UX design for every screenUX design for every screen
UX design for every screen
 
Building responsive web mobile mapping applications
Building responsive web mobile mapping applicationsBuilding responsive web mobile mapping applications
Building responsive web mobile mapping applications
 
Building Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with Drupal
 
Business of Front-end Web Development
Business of Front-end Web DevelopmentBusiness of Front-end Web Development
Business of Front-end Web Development
 
The future of BYU web design
The future of BYU web designThe future of BYU web design
The future of BYU web design
 

Recently uploaded

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
 
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
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
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
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
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
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
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
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
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
 
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
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
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
 
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
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 

Recently uploaded (20)

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
 
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...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
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
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
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...
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
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
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
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
 
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
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
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...
 
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...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 

WordPress Navigation in Responsive Design

  • 1.
  • 2. “Poorly executed navigation can spell disaster for user experience.” -Gene Crawford
  • 3. Roadmap What is RWD? How your content strategy plays into RWD & navigation. Manipulate WordPress for a better responsive nav. Navigation patterns and examples.
  • 4. What is Responsive Web Design? Where can I learn about RWD? 1. bradrost.github.com/this-is-responsive 2. teamtreehouse.com 3. google.com View great examples at: mediaqueri.es
  • 5. Content Strategy 1. What do I want my users to see on mobile? 2. Should I show a “lite” version of my site? 3. But aren’t users within a different context when viewing my site on their phone?
  • 6. Retro-fitting an existing website to become responsive can be difficult. Especially one with a large menu.
  • 7.
  • 8.
  • 9.
  • 10. “Use mobile as an excuse to revisit your navigation.” -Brad Frost
  • 11. Manipulate WordPress 1. Target your navigation through better CSS classes. 2. Use multiple menus if necessary 3. Use custom links for top-level menu items
  • 12. Better CSS Classes 1. Add a “walker” to your wp_nav_menu: <?php wp_nav_menu( array( 'theme_location' => 'primary', 'container' => false, 'walker'=> new Bootstrap_Walker_Nav_Menu, 'menu_class' => 'nav' ) ); ?> https://gist.github.com/erickarbe/4192494 2. Now use some JS to target your Nav: http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js
  • 13. Add Your Own Classes
  • 14. Register a Second Menu register_nav_menus( array( 'primary' => __( 'Primary Menu', 'base' ), 'mobile' => __( 'Mobile Menu', 'base' ) ) ); .primary_menu { display: none; } .mobile_menu { display: block; } @media all and (min-width:768px) { .primary_menu { display: block; } .mobile_menu { display: none; } } **Useful when providing a menu in the header & footer**
  • 15. Take Advantage of Custom Links <ul> <li><a href="/home/">Home</a></li> <li class="has-submenu" ><a class="dropdown-toggle" href="#">About</a> <ul class="dropdown-menu"> <li><a href="/about/">Overview</a></li> <li><a href="/overview/">Overview</a></li> <li><a href="/more-about/">More About</a></li> </ul> </li> <li><a href="/contact/">Contact</a></li> </ul> **Use hash tags for top level menu items with sub-nav**
  • 17. Just Add Padding • Very easy to implement • User knows where your nav is • No JS required • Drawbacks: • Won’t work with sub-nav • Can look awkward at certain points • Links: • http://www.inboxwarriors.co.uk/ • http://responsivenavigation.net/examples/simple-padding/
  • 18. Grid / Percentage Based • Easy to touch - buttons are great size • Looks terrific & scales nicely • No JS required • Drawbacks: • Can’t really work with sub-navigation (unless you hide the sub-nav) • Links: • http://css-tricks.com • http://traveloregon.com/
  • 19. Multi-Toggle / Accordion • Accordion style menu • Great solution for large menus • Provides good user experience • Drawbacks: • Usually requires JS (doesn’t need it) • Can push page content way down • Links: • http://www.microsoft.com/en-us/default.aspx
  • 20. Footer Nav • Great concept - content first • Pretty easy to implement • Works across all browsers • “Give ‘em content, not menus” • Drawbacks: • Provides an awkward jump to the footer - especially on long pages • Usually need to maintain two sets of navigation • Links: • http://aneventapart.com/ • http://responsivenavigation.net/examples/footer- list/
  • 21. Select Nav • Can be super easy to implement • Easy to retro-fit an existing site • Works well with large menus • Uses native UI controls • Drawbacks: • Not incredibly sexy (tough to style) • Usability is just OK • Requires JS • Links: • http://tinynav.viljamis.com/ • http://lukaszfiszer.github.com/selectnav.js/
  • 22. Off-Canvas / Page Slide • Facebook style off-canvas menu • Very slick when used with animation • Terrific UX • Drawbacks: • Can’t be used with a huge menu • Links: • https://github.com/torkiljohnsen/swipe • http://jasonweaver.name/lab/offcanvas/ *Yes, I know this facebook screenshot is not a responsive site - it’s just an example of how this looks.
  • 23. http://www.flickr.com/photos/oliviahouse32/3347768206/ Think “Touch” Optimal Sizes for Touch Elements • Average human finger pad is 10-14mm • Apple suggests a 44x44 points (basically, 44px) touch target size (11.6mm) • Windows suggests a 9x9mm touch target size • Nokia suggests a 7x7mm touch target size photo courtesy of Luke Wroblewski | www.lukew.com
  • 24. Additionally... * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } http://paulirish.com/2012/box-sizing-border-box-ftw/ http://html5please.com/#box-sizing https://github.com/Schepp/box-sizing-polyfill http://modernizr.com/ (.no-box-sizing)
  • 25. Resources Better WalkerNav: https://gist.github.com/erickarbe/4192494 Drop-down JavaScript: http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js http://erickar.be/blog/my-experience-with-navigation-in-responsive-design http://responsivenavigation.net/ http://mediaqueri.es/ http://www.responsinator.com http://lab.maltewassermann.com/viewport-resizer/ http://tinynav.viljamis.com/ http://lukaszfiszer.github.com/selectnav.js/ http://designshack.net/articles/css/code-a-responsive-navigation-menu/ (Fluid Grid Layout)
  • 26. Thank You! Erick Arbé @erickarbe