SlideShare a Scribd company logo
“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 design
Russ Weakley
 
Boot strap
Boot strapBoot strap
Boot strap
Wahidullah Habib
 
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’ts
Taylor McCaslin
 
WordPress Multi-Network
WordPress Multi-NetworkWordPress Multi-Network
WordPress Multi-Network
Curtiss Grymala
 
Prototyping web apps with Wordpress
Prototyping web apps with WordpressPrototyping web apps with Wordpress
Prototyping web apps with WordpressZeeen
 
WordPress Multisite Q&A
WordPress Multisite Q&AWordPress Multisite Q&A
WordPress Multisite Q&A
Patrick Johanneson
 
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
George 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 NETWORK
George Bikas
 
Superfish menus
Superfish menusSuperfish menus
Superfish menus
poka_dan
 
Understanding WordPress Multisite
Understanding WordPress MultisiteUnderstanding WordPress Multisite
Understanding WordPress Multisite
Ryan 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 medicion
Lourdes Ortiz
 
Internet safety
Internet safetyInternet safety
Internet safety
martdale
 
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 umce
Mariela 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 Design
openchamp
 
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 You
openchamp
 
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
Jose 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 DNN
gravityworksdd
 
Multi screen HTML5
Multi screen HTML5Multi screen HTML5
Multi screen HTML5
Ron Reiter
 
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
Suzanne Dergacheva
 
Building Responsive Websites with Drupal
Building Responsive Websites with DrupalBuilding Responsive Websites with Drupal
Building Responsive Websites with Drupal
Suzanne Dergacheva
 
Reboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in researchReboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in research
AadiChauhan2
 
FITC - Bootstrap Unleashed
FITC - Bootstrap UnleashedFITC - Bootstrap Unleashed
FITC - Bootstrap Unleashed
Rami 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 101
FITC
 
Eye candy for your iPhone
Eye candy for your iPhoneEye candy for your iPhone
Eye candy for your iPhone
Brian 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 Design
Mike Wilcox
 
Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2Responsive Design in iMIS Part 2
Responsive Design in iMIS Part 2
Andrea 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 rollovers
Yaowaluck Promdee
 
Responsive Web Design_2013
Responsive Web Design_2013Responsive Web Design_2013
Responsive Web Design_2013
Achieve Internet
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
Julia Vi
 
UX design for every screen
UX design for every screenUX design for every screen
UX design for every screen
Four Kitchens
 
Building responsive web mobile mapping applications
Building responsive web mobile mapping applicationsBuilding responsive web mobile mapping applications
Building responsive web mobile mapping applications
Allan 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 Development
Rachel Andrew
 

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
 
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
 
Building Responsive Websites with Drupal
Building Responsive Websites with DrupalBuilding Responsive Websites with Drupal
Building Responsive Websites with Drupal
 
Reboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in researchReboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in research
 
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
 

Recently uploaded

GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
Fwdays
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 

Recently uploaded (20)

GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 

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